I'm writing a report and one of the requirement of my Bode-plots is that they are logarithmic, but I need integer numbers (i.e. 10, 20 and 30) on the y-axes.
I tried using ytick={} but these numbers do not appear in the graph.
Part of my code:
\begin{tikzpicture}
\begin{loglogaxis}[
xlabel=frequentie $f (\hertz)$,
ylabel=weerstand $R (\ohm)$,
grid=both,
minor grid style={gray!25},
major grid style={gray!25},
ytick={10,15,20,25,30}]
\addplot table[x=f,y=R,col sep=semicolon]{MeetresultatenOpdracht12a.csv};
\end{loglogaxis}
\end{tikzpicture}
Thanks!

yticklabels={10,15,20,25,30}? – cmhughes Mar 01 '14 at 21:35