How do I draw this picture using Tikz?
A MWE using Zarko's solution found here Drawing the following diagram? :
\documentclass[12pt, a4paper]{report}
\usepackage{tikz}
\usetikzlibrary{arrows.meta, positioning, quotes}
\begin{document}
\begin{figure} \centering
\begin{tikzpicture}[
node distance = 33mm and 33mm,
N/.style = {draw, minimum size=12mm, inner sep=0pt},
> = {Stealth[scale=0.6]},
every edge/.append style = {draw, ->},
every edge quotes/.append style = {font=\small\linespread{0.75}\selectfont,
inner sep=5pt, sloped}
]
\node [N] (A) {$S$};
\node [N, right=of A] (B) {$A$};
\node [N,below=of B] (C) {$I$};
\node [N,left=of C] (D) {$R$};
%
\draw [<-] (A) -- ++(-1,0) node[left] {$b\left(1-\nu\right)$};
\draw [<-] (D) -- ++(-1,0) node[left] {$b\nu$};
\draw [->] (A) -- ++(0,1) node[above] {$\mu S$};
\draw [->] (B) -- ++(0,1) node[above] {$\mu A$};
\draw [->] ([xshift=-3.5mm] C.south) -- ++(0,-0.4) node[below] {$\alpha I$};
\draw [->] ([xshift=+3.5mm] C.south) -- ++(0,-0.4) node[below] {$\mu I$};
\draw [->] (D) -- ++(0,-1) node[below] {$\mu R$};
\draw[->] (B)--(D) node[midway,sloped,above]{$\gamma_A$};
%
\end{tikzpicture}
\setlength{\textfloatsep}{10pt plus 1.0pt minus 2.0pt}
\caption{Flow diagram for the SAIRS model.}
\end{figure}
\end{document}
Feel free to improve on this MWE.


tkz-graphpackage. It's based on TikZ which you obviously already know, and is designed to draw exactlly that sort of figure. I discovered it a few weeks ago for a graph theory lesson and am very happy with its efficiency. – Miyase May 19 '22 at 10:51tikz-cdpackage. – Bernard May 19 '22 at 11:35beautifulhandwriting. Helpers don't want to guess your handwriting ^^ PS: I did not downvote – Black Mild May 19 '22 at 12:13