How to remove arrows pointing towards 0?












0














I've been struggling with removing these arrows as shown in the picture. It appears that I get more of these arrows the more graphs I have. And if I don't add any graphs they are completely gone. Hope someone can help me out there!



enter image description here





This is my code for this graph:



 begin{tikzpicture}
begin{axis}[
width=0.7linewidth, % Scale the plot to linewidth
xtick=data,
ymin=0,
ymax=1600,
%grid=major, % Display a grid
%grid style={dashed,gray!30}, % Set the style
xlabel=Gewicht $m$, % Set the labels
ylabel=Spannung $U$ Peak to Peak,
x unit=si{g}, % Set the respective units
y unit=mV,
]
addplot+[mark=x, mark size=5, red, smooth]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe1, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x, mark size=5, blue, smooth]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe2, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x, mark size=5, green, smooth]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe3, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x,mark size=5, brown, smooth]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe4, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x,mark size=5, purple, smooth]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe5, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[black, dashed]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=b, col sep=semicolon, mark = none] {PeaktoPeakA.csv};

node[label={y=0,0863x+312,65}] at (axis cs:7000,650) {};

%addplot[blue]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
%table[x=Membranabschnitt,y=160,col sep=semicolon, mark=none, dashed, y={create col/linear regression={y=160}}] % compute a linear regression from the input table {dreizeilentabelle.csv};

end{axis}
end{tikzpicture}


I couldn't copy in all of my code, cause it had too many characters, but I was able to isolate the specific graph. Code of whole document which will result in the graph:



documentclass[12pt,a4paper]{article}
usepackage{german}
usepackage[latin1]{inputenc}
usepackage{tabularx}
usepackage{booktabs}
usepackage{pgfplots}
usepackage{pgfplotstable}
usepackage{siunitx}
usepackage{tikz}
usepackage{subfigure}
usepackage{comment}
usepackage{caption}
usepackage{gensymb}
usepackage{xfrac}
usepackage{wrapfig}
usepackage{blindtext}
pagestyle{plain}
pgfplotsset{compat=newest}
usepgfplotslibrary{units}
sisetup{
round-mode = places,
round-precision = 2,
}
begin{document}
begin{tikzpicture}
begin{axis}[
width=0.7linewidth, % Scale the plot to linewidth
xtick=data,
ymin=0,
ymax=1600,
%grid=major, % Display a grid
%grid style={dashed,gray!30}, % Set the style
xlabel=Gewicht $m$, % Set the labels
ylabel=Spannung $U$ Peak to Peak,
x unit=si{g}, % Set the respective units
y unit=mV,
]
addplot+[mark=x, mark size=5, black]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe1, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x, mark size=5, black]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe2, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x, mark size=5, black]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe3, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x,mark size=5, black]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe4, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x,mark size=5, black]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe5, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[black, dashed]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=b, col sep=semicolon, mark = none] {PeaktoPeakA.csv};

node[label={y=0,0863x+312,65}] at (axis cs:7000,650) {};

%addplot[blue]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
%table[x=Membranabschnitt,y=160,col sep=semicolon, mark=none, dashed, y={create col/linear regression={y=160}}] % compute a linear regression from the input table {dreizeilentabelle.csv};

end{axis}
end{tikzpicture}
end{document}


Needed PeaktoPeakA.csv file:



Nummer;Gewicht;Reihe1;Reihe2;Reihe3;Reihe4;Reihe5;ReiheA;b
1;4782;718;301;704;746;881;670;725
2;7172;830;1405;937;984;1034;1038;931.594
3;9742;933;1522;1204;931;919;1101.8;1153.38









share|improve this question




















  • 2




    Welcome to TeX.SX! Please don't post code fragments. Instead, put your fragments into a complete compilable document that shows the problem.
    – Stefan Pinnow
    Dec 18 '18 at 18:19






  • 2




    From the presented code it is very unlikely that the arrows are coming from that.
    – Stefan Pinnow
    Dec 18 '18 at 18:28










  • I thought the same, but if I remove every addplot entry there are no arrows. I'm using Overleaf, if that is making a difference.
    – user178029
    Dec 18 '18 at 18:29












  • Please post complete code that produces this result and also the csv file so that we can compile it for ourselves.
    – JPi
    Dec 18 '18 at 19:24






  • 1




    With the code you added, there is no arrow pointing towards 0 on the graph.
    – AndréC
    Dec 18 '18 at 20:14
















0














I've been struggling with removing these arrows as shown in the picture. It appears that I get more of these arrows the more graphs I have. And if I don't add any graphs they are completely gone. Hope someone can help me out there!



enter image description here





This is my code for this graph:



 begin{tikzpicture}
begin{axis}[
width=0.7linewidth, % Scale the plot to linewidth
xtick=data,
ymin=0,
ymax=1600,
%grid=major, % Display a grid
%grid style={dashed,gray!30}, % Set the style
xlabel=Gewicht $m$, % Set the labels
ylabel=Spannung $U$ Peak to Peak,
x unit=si{g}, % Set the respective units
y unit=mV,
]
addplot+[mark=x, mark size=5, red, smooth]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe1, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x, mark size=5, blue, smooth]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe2, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x, mark size=5, green, smooth]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe3, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x,mark size=5, brown, smooth]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe4, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x,mark size=5, purple, smooth]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe5, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[black, dashed]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=b, col sep=semicolon, mark = none] {PeaktoPeakA.csv};

node[label={y=0,0863x+312,65}] at (axis cs:7000,650) {};

%addplot[blue]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
%table[x=Membranabschnitt,y=160,col sep=semicolon, mark=none, dashed, y={create col/linear regression={y=160}}] % compute a linear regression from the input table {dreizeilentabelle.csv};

end{axis}
end{tikzpicture}


I couldn't copy in all of my code, cause it had too many characters, but I was able to isolate the specific graph. Code of whole document which will result in the graph:



documentclass[12pt,a4paper]{article}
usepackage{german}
usepackage[latin1]{inputenc}
usepackage{tabularx}
usepackage{booktabs}
usepackage{pgfplots}
usepackage{pgfplotstable}
usepackage{siunitx}
usepackage{tikz}
usepackage{subfigure}
usepackage{comment}
usepackage{caption}
usepackage{gensymb}
usepackage{xfrac}
usepackage{wrapfig}
usepackage{blindtext}
pagestyle{plain}
pgfplotsset{compat=newest}
usepgfplotslibrary{units}
sisetup{
round-mode = places,
round-precision = 2,
}
begin{document}
begin{tikzpicture}
begin{axis}[
width=0.7linewidth, % Scale the plot to linewidth
xtick=data,
ymin=0,
ymax=1600,
%grid=major, % Display a grid
%grid style={dashed,gray!30}, % Set the style
xlabel=Gewicht $m$, % Set the labels
ylabel=Spannung $U$ Peak to Peak,
x unit=si{g}, % Set the respective units
y unit=mV,
]
addplot+[mark=x, mark size=5, black]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe1, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x, mark size=5, black]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe2, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x, mark size=5, black]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe3, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x,mark size=5, black]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe4, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x,mark size=5, black]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe5, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[black, dashed]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=b, col sep=semicolon, mark = none] {PeaktoPeakA.csv};

node[label={y=0,0863x+312,65}] at (axis cs:7000,650) {};

%addplot[blue]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
%table[x=Membranabschnitt,y=160,col sep=semicolon, mark=none, dashed, y={create col/linear regression={y=160}}] % compute a linear regression from the input table {dreizeilentabelle.csv};

end{axis}
end{tikzpicture}
end{document}


Needed PeaktoPeakA.csv file:



Nummer;Gewicht;Reihe1;Reihe2;Reihe3;Reihe4;Reihe5;ReiheA;b
1;4782;718;301;704;746;881;670;725
2;7172;830;1405;937;984;1034;1038;931.594
3;9742;933;1522;1204;931;919;1101.8;1153.38









share|improve this question




















  • 2




    Welcome to TeX.SX! Please don't post code fragments. Instead, put your fragments into a complete compilable document that shows the problem.
    – Stefan Pinnow
    Dec 18 '18 at 18:19






  • 2




    From the presented code it is very unlikely that the arrows are coming from that.
    – Stefan Pinnow
    Dec 18 '18 at 18:28










  • I thought the same, but if I remove every addplot entry there are no arrows. I'm using Overleaf, if that is making a difference.
    – user178029
    Dec 18 '18 at 18:29












  • Please post complete code that produces this result and also the csv file so that we can compile it for ourselves.
    – JPi
    Dec 18 '18 at 19:24






  • 1




    With the code you added, there is no arrow pointing towards 0 on the graph.
    – AndréC
    Dec 18 '18 at 20:14














0












0








0







I've been struggling with removing these arrows as shown in the picture. It appears that I get more of these arrows the more graphs I have. And if I don't add any graphs they are completely gone. Hope someone can help me out there!



enter image description here





This is my code for this graph:



 begin{tikzpicture}
begin{axis}[
width=0.7linewidth, % Scale the plot to linewidth
xtick=data,
ymin=0,
ymax=1600,
%grid=major, % Display a grid
%grid style={dashed,gray!30}, % Set the style
xlabel=Gewicht $m$, % Set the labels
ylabel=Spannung $U$ Peak to Peak,
x unit=si{g}, % Set the respective units
y unit=mV,
]
addplot+[mark=x, mark size=5, red, smooth]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe1, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x, mark size=5, blue, smooth]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe2, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x, mark size=5, green, smooth]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe3, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x,mark size=5, brown, smooth]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe4, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x,mark size=5, purple, smooth]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe5, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[black, dashed]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=b, col sep=semicolon, mark = none] {PeaktoPeakA.csv};

node[label={y=0,0863x+312,65}] at (axis cs:7000,650) {};

%addplot[blue]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
%table[x=Membranabschnitt,y=160,col sep=semicolon, mark=none, dashed, y={create col/linear regression={y=160}}] % compute a linear regression from the input table {dreizeilentabelle.csv};

end{axis}
end{tikzpicture}


I couldn't copy in all of my code, cause it had too many characters, but I was able to isolate the specific graph. Code of whole document which will result in the graph:



documentclass[12pt,a4paper]{article}
usepackage{german}
usepackage[latin1]{inputenc}
usepackage{tabularx}
usepackage{booktabs}
usepackage{pgfplots}
usepackage{pgfplotstable}
usepackage{siunitx}
usepackage{tikz}
usepackage{subfigure}
usepackage{comment}
usepackage{caption}
usepackage{gensymb}
usepackage{xfrac}
usepackage{wrapfig}
usepackage{blindtext}
pagestyle{plain}
pgfplotsset{compat=newest}
usepgfplotslibrary{units}
sisetup{
round-mode = places,
round-precision = 2,
}
begin{document}
begin{tikzpicture}
begin{axis}[
width=0.7linewidth, % Scale the plot to linewidth
xtick=data,
ymin=0,
ymax=1600,
%grid=major, % Display a grid
%grid style={dashed,gray!30}, % Set the style
xlabel=Gewicht $m$, % Set the labels
ylabel=Spannung $U$ Peak to Peak,
x unit=si{g}, % Set the respective units
y unit=mV,
]
addplot+[mark=x, mark size=5, black]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe1, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x, mark size=5, black]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe2, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x, mark size=5, black]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe3, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x,mark size=5, black]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe4, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x,mark size=5, black]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe5, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[black, dashed]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=b, col sep=semicolon, mark = none] {PeaktoPeakA.csv};

node[label={y=0,0863x+312,65}] at (axis cs:7000,650) {};

%addplot[blue]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
%table[x=Membranabschnitt,y=160,col sep=semicolon, mark=none, dashed, y={create col/linear regression={y=160}}] % compute a linear regression from the input table {dreizeilentabelle.csv};

end{axis}
end{tikzpicture}
end{document}


Needed PeaktoPeakA.csv file:



Nummer;Gewicht;Reihe1;Reihe2;Reihe3;Reihe4;Reihe5;ReiheA;b
1;4782;718;301;704;746;881;670;725
2;7172;830;1405;937;984;1034;1038;931.594
3;9742;933;1522;1204;931;919;1101.8;1153.38









share|improve this question















I've been struggling with removing these arrows as shown in the picture. It appears that I get more of these arrows the more graphs I have. And if I don't add any graphs they are completely gone. Hope someone can help me out there!



enter image description here





This is my code for this graph:



 begin{tikzpicture}
begin{axis}[
width=0.7linewidth, % Scale the plot to linewidth
xtick=data,
ymin=0,
ymax=1600,
%grid=major, % Display a grid
%grid style={dashed,gray!30}, % Set the style
xlabel=Gewicht $m$, % Set the labels
ylabel=Spannung $U$ Peak to Peak,
x unit=si{g}, % Set the respective units
y unit=mV,
]
addplot+[mark=x, mark size=5, red, smooth]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe1, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x, mark size=5, blue, smooth]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe2, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x, mark size=5, green, smooth]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe3, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x,mark size=5, brown, smooth]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe4, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x,mark size=5, purple, smooth]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe5, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[black, dashed]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=b, col sep=semicolon, mark = none] {PeaktoPeakA.csv};

node[label={y=0,0863x+312,65}] at (axis cs:7000,650) {};

%addplot[blue]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
%table[x=Membranabschnitt,y=160,col sep=semicolon, mark=none, dashed, y={create col/linear regression={y=160}}] % compute a linear regression from the input table {dreizeilentabelle.csv};

end{axis}
end{tikzpicture}


I couldn't copy in all of my code, cause it had too many characters, but I was able to isolate the specific graph. Code of whole document which will result in the graph:



documentclass[12pt,a4paper]{article}
usepackage{german}
usepackage[latin1]{inputenc}
usepackage{tabularx}
usepackage{booktabs}
usepackage{pgfplots}
usepackage{pgfplotstable}
usepackage{siunitx}
usepackage{tikz}
usepackage{subfigure}
usepackage{comment}
usepackage{caption}
usepackage{gensymb}
usepackage{xfrac}
usepackage{wrapfig}
usepackage{blindtext}
pagestyle{plain}
pgfplotsset{compat=newest}
usepgfplotslibrary{units}
sisetup{
round-mode = places,
round-precision = 2,
}
begin{document}
begin{tikzpicture}
begin{axis}[
width=0.7linewidth, % Scale the plot to linewidth
xtick=data,
ymin=0,
ymax=1600,
%grid=major, % Display a grid
%grid style={dashed,gray!30}, % Set the style
xlabel=Gewicht $m$, % Set the labels
ylabel=Spannung $U$ Peak to Peak,
x unit=si{g}, % Set the respective units
y unit=mV,
]
addplot+[mark=x, mark size=5, black]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe1, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x, mark size=5, black]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe2, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x, mark size=5, black]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe3, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x,mark size=5, black]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe4, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[mark=x,mark size=5, black]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=Reihe5, col sep=semicolon, only marks] {PeaktoPeakA.csv};

addplot+[black, dashed]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
table[x=Gewicht, y=b, col sep=semicolon, mark = none] {PeaktoPeakA.csv};

node[label={y=0,0863x+312,65}] at (axis cs:7000,650) {};

%addplot[blue]
% add a plot from table; you select the columns by using the actual name in the .csv file (on top)
%table[x=Membranabschnitt,y=160,col sep=semicolon, mark=none, dashed, y={create col/linear regression={y=160}}] % compute a linear regression from the input table {dreizeilentabelle.csv};

end{axis}
end{tikzpicture}
end{document}


Needed PeaktoPeakA.csv file:



Nummer;Gewicht;Reihe1;Reihe2;Reihe3;Reihe4;Reihe5;ReiheA;b
1;4782;718;301;704;746;881;670;725
2;7172;830;1405;937;984;1034;1038;931.594
3;9742;933;1522;1204;931;919;1101.8;1153.38






tikz-pgf pgfplots arrows






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 27 '18 at 14:56

























asked Dec 18 '18 at 18:18









user178029

213




213








  • 2




    Welcome to TeX.SX! Please don't post code fragments. Instead, put your fragments into a complete compilable document that shows the problem.
    – Stefan Pinnow
    Dec 18 '18 at 18:19






  • 2




    From the presented code it is very unlikely that the arrows are coming from that.
    – Stefan Pinnow
    Dec 18 '18 at 18:28










  • I thought the same, but if I remove every addplot entry there are no arrows. I'm using Overleaf, if that is making a difference.
    – user178029
    Dec 18 '18 at 18:29












  • Please post complete code that produces this result and also the csv file so that we can compile it for ourselves.
    – JPi
    Dec 18 '18 at 19:24






  • 1




    With the code you added, there is no arrow pointing towards 0 on the graph.
    – AndréC
    Dec 18 '18 at 20:14














  • 2




    Welcome to TeX.SX! Please don't post code fragments. Instead, put your fragments into a complete compilable document that shows the problem.
    – Stefan Pinnow
    Dec 18 '18 at 18:19






  • 2




    From the presented code it is very unlikely that the arrows are coming from that.
    – Stefan Pinnow
    Dec 18 '18 at 18:28










  • I thought the same, but if I remove every addplot entry there are no arrows. I'm using Overleaf, if that is making a difference.
    – user178029
    Dec 18 '18 at 18:29












  • Please post complete code that produces this result and also the csv file so that we can compile it for ourselves.
    – JPi
    Dec 18 '18 at 19:24






  • 1




    With the code you added, there is no arrow pointing towards 0 on the graph.
    – AndréC
    Dec 18 '18 at 20:14








2




2




Welcome to TeX.SX! Please don't post code fragments. Instead, put your fragments into a complete compilable document that shows the problem.
– Stefan Pinnow
Dec 18 '18 at 18:19




Welcome to TeX.SX! Please don't post code fragments. Instead, put your fragments into a complete compilable document that shows the problem.
– Stefan Pinnow
Dec 18 '18 at 18:19




2




2




From the presented code it is very unlikely that the arrows are coming from that.
– Stefan Pinnow
Dec 18 '18 at 18:28




From the presented code it is very unlikely that the arrows are coming from that.
– Stefan Pinnow
Dec 18 '18 at 18:28












I thought the same, but if I remove every addplot entry there are no arrows. I'm using Overleaf, if that is making a difference.
– user178029
Dec 18 '18 at 18:29






I thought the same, but if I remove every addplot entry there are no arrows. I'm using Overleaf, if that is making a difference.
– user178029
Dec 18 '18 at 18:29














Please post complete code that produces this result and also the csv file so that we can compile it for ourselves.
– JPi
Dec 18 '18 at 19:24




Please post complete code that produces this result and also the csv file so that we can compile it for ourselves.
– JPi
Dec 18 '18 at 19:24




1




1




With the code you added, there is no arrow pointing towards 0 on the graph.
– AndréC
Dec 18 '18 at 20:14




With the code you added, there is no arrow pointing towards 0 on the graph.
– AndréC
Dec 18 '18 at 20:14










1 Answer
1






active

oldest

votes


















2














Ok, I found the error myself. The .csv files where originally made in excel, cause some of them had way more than 1000 rows. I saved it from Excel as a .csv and removed all , with . so Latex can understand it. I don't know how or why, but by using this method, it will show the arrows. If I just copy the content of the .csv file, create a new file with the same name and paste in the same .csv content and then upload it, the arrows are gone.






share|improve this answer





















    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "85"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f466413%2fhow-to-remove-arrows-pointing-towards-0%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    2














    Ok, I found the error myself. The .csv files where originally made in excel, cause some of them had way more than 1000 rows. I saved it from Excel as a .csv and removed all , with . so Latex can understand it. I don't know how or why, but by using this method, it will show the arrows. If I just copy the content of the .csv file, create a new file with the same name and paste in the same .csv content and then upload it, the arrows are gone.






    share|improve this answer


























      2














      Ok, I found the error myself. The .csv files where originally made in excel, cause some of them had way more than 1000 rows. I saved it from Excel as a .csv and removed all , with . so Latex can understand it. I don't know how or why, but by using this method, it will show the arrows. If I just copy the content of the .csv file, create a new file with the same name and paste in the same .csv content and then upload it, the arrows are gone.






      share|improve this answer
























        2












        2








        2






        Ok, I found the error myself. The .csv files where originally made in excel, cause some of them had way more than 1000 rows. I saved it from Excel as a .csv and removed all , with . so Latex can understand it. I don't know how or why, but by using this method, it will show the arrows. If I just copy the content of the .csv file, create a new file with the same name and paste in the same .csv content and then upload it, the arrows are gone.






        share|improve this answer












        Ok, I found the error myself. The .csv files where originally made in excel, cause some of them had way more than 1000 rows. I saved it from Excel as a .csv and removed all , with . so Latex can understand it. I don't know how or why, but by using this method, it will show the arrows. If I just copy the content of the .csv file, create a new file with the same name and paste in the same .csv content and then upload it, the arrows are gone.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Dec 18 '18 at 20:22









        user178029

        213




        213






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f466413%2fhow-to-remove-arrows-pointing-towards-0%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            How to send String Array data to Server using php in android

            Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

            Is anime1.com a legal site for watching anime?