I am new to latex and this is my first post, so I am doing my best. I am plotting data (csv file) with pgfplots and so far it is working. But there some things I want to change and can not find the solution elsewhere.
Problems (Picture is down below)
Since my data is going into the billions a "10^8" is being displayed to adjust the y-axis which is in single digits. Since I already have the y-axis labeled as "... in $ Billions" I do not want that adjustment. Is there maybe a simple command or do I have to adjust my data?
The top x-axis as well as the left y-axis have "tick lines". Which command do I have to use to elimate those?
Thank you very much :)
This is my code so far:
\usepackage{pgfplots}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture} \begin{axis}[height=9cm, width=\textwidth,
legend pos=north west,
xmin=1995,
xmax=2018,
x tick label style={/pgf/number format/1000 sep=},every axis plot/.append style={ultra thick},
ymin=0,
ymajorgrids,
xlabel=Year,
ylabel=Trade in \$ Billions],
\addplot table [ x=Year, y=Export, col sep=semicolon] {data.csv};
\addlegendentry{$Exports$}
\addplot table [ x=Year, y=Import, col sep=semicolon] {data.csv};
\addlegendentry{$Imports$}
\addplot table [ x=Year, y=Total Trade, col sep=semicolon] {data.csv};
\addlegendentry{$Total Trade$}
\end{axis}
\end{tikzpicture}
\end{document}

