
PGFplot을 사용하여 플로팅하는 것에 대해 많은 질문이 있습니다.
xticks
여러 y 플롯의 크기를 다시 조정하는 방법은 무엇입니까 ?!.10(-2)을 오른쪽으로 약간 이동하여 정렬된 것처럼 보이도록 하는 방법은 무엇입니까?
을 변경하는 방법은 무엇입니까
xtickslabel
?사용하면
xtickslabel={1992,1993,1994,1995,1996}
두 번째 그림에 표시된 대로 5년이 포함된 각 단일 틱을 얻습니다.
\begin{tikzpicture}
\begin{groupplot}[group style={group size= 2 by 3,horizontal sep =1.5cm,vertical sep =1.5cm},height=6.5cm,width=8cm]
\nextgroupplot[legend pos=north east,
legend style={draw=none},
scaled ticks=false,
y tick label style={anchor=east},
ytick pos=left,
scaled ticks=true,
xmin=0,
xmax=120,
xticklabel=\empty,
]
\addlegendimage{empty legend}
\addplot[red, mark=+] table{Annexes/resultats/BET/GRAPbjh1.dat};
\addlegendentry{Graphite}
\begin{groupplot}[group style={group size= 2 by 3,horizontal sep = 1.5cm,vertical sep =1.5cm},height=6.5cm,width=8cm
]
\nextgroupplot[xlabel={Pression Relative p/p$°$}, legend pos=north east,
legend style={draw=none},
scaled ticks=false, %enlever le.10^-5 !!!!!!!!!!!!
y tick label style={anchor=west},
xmin=0,
xmax=110, % I JUST FOUND THIS WHEN POSTING THE CODE SO THE SCALE IS OK
yticklabel pos=right,
ytick pos=right,
scaled ticks=true,
]
\addlegendimage{empty legend}
\addplot[green, mark=o] table{Annexes/resultats/BET/GRAPbjh2.dat};
\addlegendentry{Graphite}
"솔루션"을 찾은 규모에 대해 10^-2가 혼란스럽습니다.
세 번째 질문의 코드xtickslabel
\begin{tikzpicture}
\begin{axis}[
xticklabel={1992;1993;1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012},
xlabel={2008},
stack plots=y,
ylabel= {Total credit},
scaled ticks=true,
]
\addplot [black] table{Annexes/resultats/herbicides.dat};
%\addplot table[x=date,y=account2] {plotdata/accounts.dat};
%\addplot table[x=date,y=account3] {plotdata/accounts.dat};
\end{axis}
\end{tikzpicture}