I'm looking to plot an excel workbook on LaTeX using pgfplots. The link to the workbook is: https://www.mediafire.com/?35z48u7pu5bd3vy
I want to plot 2 adjacent columns at the same time. Hence in total 5 plots on the same graph.
I tried to work with \begin{filename} but it didn't work. I'm new to LaTeX and any kind of help would be appreciated?
Asked
Active
Viewed 2,194 times
2
Stefan Pinnow
- 29,535
MaterialSci
- 21
pgfplotscan read Excel files, but if you save it as a.csvfile it shouldn't be a problem, you'd just need to something like\addplot table[x=xcolumnname,y=ycolumnname] {filename.csv};– Torbjørn T. Dec 14 '16 at 11:43.xlsfiles, (.csvand.datare ok). Alternatively you can use the suggestions in this question to Import the.xlsfiles into Latex, and then figure out a way to handle this to PGFplots (perhaps another question here, but more specific then). – Guilherme Zanotelli Dec 14 '16 at 13:29