PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : log-log Darstellung mit pgfplots



Bilbo
13-12-2008, 15:43
Hallo,

wenn ich mit



\begin{tikzpicture}
\begin{loglogaxis}
...
\end{loglogaxis}
\end{tikzpicture}


eine log-log Grafik erstelle, müsste ja eigentlich die Achseneinteilung dementsprechend logarithmisch aussehen. Bei mir jedoch ist dies leider nicht der Fall und ich bekomme eine einheitlich Darstellung meiner Daten.

Hier der entsprechende Code mit Daten als *.csv-Datei.



{\pgfplotstableread[col sep=semicolon]{test.csv}\table

\begin{landscape}
\begin{tikzpicture}
\begin{loglogaxis}[
xlabel={test1},
ylabel={test2},
height=14cm,
width=21cm,
grid=major,
]
\addplot[color=red,mark=*] table[x index=1,y index=5] from {\table};
\end{loglogaxis}
\end{tikzpicture}
\end{landscape}}


Woran liegt das?

Gruß,
Bilbo