Page MenuHomec4science

Ag_Cu_VI.tex
No OneTemporary

File Metadata

Created
Wed, Jan 29, 22:23

Ag_Cu_VI.tex

\begin{tikzpicture}
\pgfplotsset
{
%scale only axis,
%scaled x ticks = base 10:2,
%height = 18cm,
width = 10cm,
xlabel={$I$ [\si{\ampere}]},
xmin = -3, xmax = 3,
%title = {Aluminium},
legend style =
{
at = {(0.05, 0.95)},
anchor = north west
},
%cycle list name = color,
grid style = dashed,
ymajorgrids = true
}
\begin{axis}
[
ylabel={$V$ [\si{\milli\volt}]},
ymin = -0.8, ymax = 0.8
]
\pgfplotstableread{rawdata/Ag_VI.dat}\datafile
\addplot+
[
color = blue,
mark = x,
mark options = {
draw = blue,
fill = none
},
only marks,
error bars/.cd,
x dir=both,
y dir=both,
x explicit,
y explicit
]
table [x = B, y = V, x error = errB, y error = errV] {\datafile};
\addlegendentry{Silver}
\pgfplotstableread{rawdata/Cu_VI.dat}\datafile
\addplot+
[
color = brown,
mark = x,
mark options = {
draw = brown,
fill = none
},
only marks,
error bars/.cd,
x dir=both,
y dir=both,
x explicit,
y explicit
]
table [x = B, y = V, x error = errB, y error = errV] {\datafile};
\addlegendentry{Copper}
\addplot
[
mark = none,
color = blue,
domain = -1.03:1.03
] {1.3380072081623602e-02 * x - 5.224693993467417e-03};
\addplot
[
mark = none,
color = brown,
domain = -1.03:1.03
] {1.2105754617612984e-02 * x - 8.809711243084652e-04};
\end{axis}
\end{tikzpicture}

Event Timeline