보고서의 경우 소규모 회사의 직원 비용과 시간을 보여주는 하나의 수치를 만들고 싶습니다. 하단 그림에는 누적 비용이 표시됩니다.
다음 tex 코드를 사용하면 다음과 같은 결과를 얻을 수 있습니다.
% somewhere in the code
\definecolor{GR}{RGB}{60,170,70}
\begin{figure}[h]
\centering
\begin{tikzpicture}
\begin{groupplot}[
group style={
group size=1 by 2,
vertical sep=8pt,
x descriptions at=edge bottom},
xlabel={months},
domain=0:35,
width=\textwidth,height=0.7\textheight,
ymin = 0, ymax = 11,
xmajorgrids, %xtick=data, xticklabel interval boundaries
xtick={6,8,12,14,20,36}
]
\nextgroupplot[ylabel={}, yticklabels={,,}, ytick={\empty}]
\addplot[color=GR,mark=none,ultra thick] coordinates {(6,10) (36,10) (36,9) (6, 9) (6,10)};
\addplot[color=GR,mark=none,ultra thick] coordinates {(8,8) (36,8) (36,7) (8, 7) (8,8)};
\addplot[color=GR,mark=none,ultra thick] coordinates {(12,6) (36,6) (36,5) (12, 5) (12,6)};
\addplot[color=GR,mark=none,ultra thick] coordinates {(14,4) (36,4) (36,3) (14, 3) (14,4)};
\addplot[color=GR,mark=none,ultra thick] coordinates {(20,2) (36,2) (36,1) (20, 1) (20,2)};
\node at (axis cs:10,9.5){employee 1};
\node at (axis cs:14,7.5){employee 2};
\node at (axis cs:18,5.5){employee 3};
\node at (axis cs:22,3.5){employee 4};
\node at (axis cs:24,1.5){employee 5};
\nextgroupplot[
ylabel={loans},
height=0.3\textheight,ytick={3200,6400,9000,12200, 13200},
ymin = 0, ymax = 15000, ymajorgrids,
xmajorgrids, xtick=data, xticklabel interval boundaries
]
\addplot[color=GR,mark=none,ultra thick] coordinates {(6,3200) (8,3200) (8,6400) (12, 6400) (12,9000) (14, 9000) (14,12200) (20, 12200) (20, 13200) (36, 13200)};
\end{groupplot}
\end{tikzpicture}
\end{figure}
두 가지 문제가 남았습니다. 첫 번째는 첫 번째 이미지에 표시된 것처럼 레이블(직원)이 왼쪽에 있어야 하고 x축 레이블도 첫 번째 플롯 위에 있어야 한다는 것입니다. 두 번째 문제는 대출 가치가 의도하지 않은 10^4만큼 확장된다는 것입니다.