My teacher has given me example code be he says be sure to name the path i am confused what he means by this
example code:
% Plot 1st data from file (you don't even have to open the files)
% Make sure to name the path!
\addplot+ [smooth,mark=none,name path=boundary1] table [x=Extensometer, y=Load, col sep=comma] {Data/ExampleDataSteel1.csv};
Data– daleif Mar 03 '20 at 09:46name path=boundary1in your line. That name is probably used in the rest of the code to identify that specific graph for further processing (adding labels, finding intersection, shading regions...). Impossible to know with just this line of code....and by the way, welcome to TeX.SX! – Rmano Mar 03 '20 at 10:29