Error with label in a groupplot
I'm trying to convert a subplot from python. I'm using matplotlib2tikz but there's an error I don't understand. The labels overlap the graphs.
How can I solve this?
This is the code:
documentclass[12pt, openany]{report}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage[french]{babel}
usepackage{pgfplots}
usepackage{amsmath}
usepackage{graphicx} %inclusion de figures
usepackage{pgf,tikz}
usetikzlibrary{babel}
usetikzlibrary{calc}
usepgfplotslibrary{groupplots}
pgfplotsset{
tick label style = {font = {fontsize{6 pt}{12 pt}selectfont}},
label style = {font = {fontsize{8 pt}{12 pt}selectfont}},
legend style = {font = {fontsize{8 pt}{12 pt}selectfont}},
title style = {font = {fontsize{8 pt}{12 pt}selectfont}},
}
begin{document}
begin{tikzpicture}
definecolor{color0}{rgb}{0.886274509803922,0.290196078431373,0.2}
definecolor{color1}{rgb}{0.203921568627451,0.541176470588235,0.741176470588235}
definecolor{color2}{rgb}{0.596078431372549,0.556862745098039,0.835294117647059}
begin{groupplot}[group style={group size=2 by 2}]
nextgroupplot[
title={textbf{Time vs Temperature}},
xlabel={Time[UTC]},
ylabel={Temperature [${circ}$C]},
xmin=-0.05, xmax=1.01,
ymin=-34.0035, ymax=37.5,
ytick={-30,-15,...,15,30},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!115.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
%legend style={black},
%legend style={draw=white!80.0!black},
legend cell align={left},
legend entries={{$T_1$},{$T_2$},{$T_3$}},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addplot [semithick, color0]
table {%}
path [draw=white, fill opacity=0] (axis cs:0,-34.0035)
--(axis cs:0,38.6735);
path [draw=white, fill opacity=0] (axis cs:1,-34.0035)
--(axis cs:1,38.6735);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
nextgroupplot[
title={textbf{Time vs Altitude}},
xlabel={Time [UTC]},
ylabel={Altitude [m]},
xmin=-0.05, xmax=1.05,
ymin=-1026.692, ymax=24734.252,
ytick={0,5000,10000,15000,20000,25000},
yticklabels={0,5000,10000,15000,20000,25000},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!92.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
legend style={at={(0.03,0.97)}, anchor=north west},
legend entries={{GPS $[A_1]$},{BMP180 $[A_2]$}},
legend cell align={left},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addplot [semithick, color0]
table {%}
path [draw=white, fill opacity=0] (axis cs:0,-34.0035)
--(axis cs:0,38.6735);
path [draw=white, fill opacity=0] (axis cs:1,-34.0035)
--(axis cs:1,38.6735);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
nextgroupplot[
title={textbf{Time vs Altitude}},
xlabel={Time [UTC]},
ylabel={Altitude [m]},
xmin=-0.05, xmax=1.05,
ymin=-1026.692, ymax=24734.252,
ytick={0,5000,10000,15000,20000,25000},
yticklabels={0,5000,10000,15000,20000,25000},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!92.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
legend style={at={(0.03,0.97)}, anchor=north west},
legend entries={{GPS $[A_1]$},{BMP180 $[A_2]$}},
legend cell align={left},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addplot [semithick, color0]
table {%data}
path [draw=white, fill opacity=0] (axis cs:0,-1026.692)
--(axis cs:0,24734.252);
path [draw=white, fill opacity=0] (axis cs:1,-1026.692)
--(axis cs:1,24734.252);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
I just put a part of the code beacause is very long and there is too much data.
Thanks in advance!
tikz-pgf groupplots matplotlib2tikz
add a comment |
I'm trying to convert a subplot from python. I'm using matplotlib2tikz but there's an error I don't understand. The labels overlap the graphs.
How can I solve this?
This is the code:
documentclass[12pt, openany]{report}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage[french]{babel}
usepackage{pgfplots}
usepackage{amsmath}
usepackage{graphicx} %inclusion de figures
usepackage{pgf,tikz}
usetikzlibrary{babel}
usetikzlibrary{calc}
usepgfplotslibrary{groupplots}
pgfplotsset{
tick label style = {font = {fontsize{6 pt}{12 pt}selectfont}},
label style = {font = {fontsize{8 pt}{12 pt}selectfont}},
legend style = {font = {fontsize{8 pt}{12 pt}selectfont}},
title style = {font = {fontsize{8 pt}{12 pt}selectfont}},
}
begin{document}
begin{tikzpicture}
definecolor{color0}{rgb}{0.886274509803922,0.290196078431373,0.2}
definecolor{color1}{rgb}{0.203921568627451,0.541176470588235,0.741176470588235}
definecolor{color2}{rgb}{0.596078431372549,0.556862745098039,0.835294117647059}
begin{groupplot}[group style={group size=2 by 2}]
nextgroupplot[
title={textbf{Time vs Temperature}},
xlabel={Time[UTC]},
ylabel={Temperature [${circ}$C]},
xmin=-0.05, xmax=1.01,
ymin=-34.0035, ymax=37.5,
ytick={-30,-15,...,15,30},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!115.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
%legend style={black},
%legend style={draw=white!80.0!black},
legend cell align={left},
legend entries={{$T_1$},{$T_2$},{$T_3$}},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addplot [semithick, color0]
table {%}
path [draw=white, fill opacity=0] (axis cs:0,-34.0035)
--(axis cs:0,38.6735);
path [draw=white, fill opacity=0] (axis cs:1,-34.0035)
--(axis cs:1,38.6735);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
nextgroupplot[
title={textbf{Time vs Altitude}},
xlabel={Time [UTC]},
ylabel={Altitude [m]},
xmin=-0.05, xmax=1.05,
ymin=-1026.692, ymax=24734.252,
ytick={0,5000,10000,15000,20000,25000},
yticklabels={0,5000,10000,15000,20000,25000},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!92.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
legend style={at={(0.03,0.97)}, anchor=north west},
legend entries={{GPS $[A_1]$},{BMP180 $[A_2]$}},
legend cell align={left},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addplot [semithick, color0]
table {%}
path [draw=white, fill opacity=0] (axis cs:0,-34.0035)
--(axis cs:0,38.6735);
path [draw=white, fill opacity=0] (axis cs:1,-34.0035)
--(axis cs:1,38.6735);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
nextgroupplot[
title={textbf{Time vs Altitude}},
xlabel={Time [UTC]},
ylabel={Altitude [m]},
xmin=-0.05, xmax=1.05,
ymin=-1026.692, ymax=24734.252,
ytick={0,5000,10000,15000,20000,25000},
yticklabels={0,5000,10000,15000,20000,25000},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!92.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
legend style={at={(0.03,0.97)}, anchor=north west},
legend entries={{GPS $[A_1]$},{BMP180 $[A_2]$}},
legend cell align={left},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addplot [semithick, color0]
table {%data}
path [draw=white, fill opacity=0] (axis cs:0,-1026.692)
--(axis cs:0,24734.252);
path [draw=white, fill opacity=0] (axis cs:1,-1026.692)
--(axis cs:1,24734.252);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
I just put a part of the code beacause is very long and there is too much data.
Thanks in advance!
tikz-pgf groupplots matplotlib2tikz
1
Well, obviously there is noend{groupplot} end{tikzpicture} end{document}}
. And then there isaddplot [semithick, color0] table {%}
....
– marmot
Feb 18 at 16:15
First, do the plots work as separate tikzpictures? Those45^circ
xticklabels are probably going to overlap the x label anyway. But mostly you need to increase/group/vertical sep
(page 454).
– John Kormylo
Feb 18 at 16:41
add a comment |
I'm trying to convert a subplot from python. I'm using matplotlib2tikz but there's an error I don't understand. The labels overlap the graphs.
How can I solve this?
This is the code:
documentclass[12pt, openany]{report}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage[french]{babel}
usepackage{pgfplots}
usepackage{amsmath}
usepackage{graphicx} %inclusion de figures
usepackage{pgf,tikz}
usetikzlibrary{babel}
usetikzlibrary{calc}
usepgfplotslibrary{groupplots}
pgfplotsset{
tick label style = {font = {fontsize{6 pt}{12 pt}selectfont}},
label style = {font = {fontsize{8 pt}{12 pt}selectfont}},
legend style = {font = {fontsize{8 pt}{12 pt}selectfont}},
title style = {font = {fontsize{8 pt}{12 pt}selectfont}},
}
begin{document}
begin{tikzpicture}
definecolor{color0}{rgb}{0.886274509803922,0.290196078431373,0.2}
definecolor{color1}{rgb}{0.203921568627451,0.541176470588235,0.741176470588235}
definecolor{color2}{rgb}{0.596078431372549,0.556862745098039,0.835294117647059}
begin{groupplot}[group style={group size=2 by 2}]
nextgroupplot[
title={textbf{Time vs Temperature}},
xlabel={Time[UTC]},
ylabel={Temperature [${circ}$C]},
xmin=-0.05, xmax=1.01,
ymin=-34.0035, ymax=37.5,
ytick={-30,-15,...,15,30},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!115.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
%legend style={black},
%legend style={draw=white!80.0!black},
legend cell align={left},
legend entries={{$T_1$},{$T_2$},{$T_3$}},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addplot [semithick, color0]
table {%}
path [draw=white, fill opacity=0] (axis cs:0,-34.0035)
--(axis cs:0,38.6735);
path [draw=white, fill opacity=0] (axis cs:1,-34.0035)
--(axis cs:1,38.6735);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
nextgroupplot[
title={textbf{Time vs Altitude}},
xlabel={Time [UTC]},
ylabel={Altitude [m]},
xmin=-0.05, xmax=1.05,
ymin=-1026.692, ymax=24734.252,
ytick={0,5000,10000,15000,20000,25000},
yticklabels={0,5000,10000,15000,20000,25000},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!92.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
legend style={at={(0.03,0.97)}, anchor=north west},
legend entries={{GPS $[A_1]$},{BMP180 $[A_2]$}},
legend cell align={left},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addplot [semithick, color0]
table {%}
path [draw=white, fill opacity=0] (axis cs:0,-34.0035)
--(axis cs:0,38.6735);
path [draw=white, fill opacity=0] (axis cs:1,-34.0035)
--(axis cs:1,38.6735);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
nextgroupplot[
title={textbf{Time vs Altitude}},
xlabel={Time [UTC]},
ylabel={Altitude [m]},
xmin=-0.05, xmax=1.05,
ymin=-1026.692, ymax=24734.252,
ytick={0,5000,10000,15000,20000,25000},
yticklabels={0,5000,10000,15000,20000,25000},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!92.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
legend style={at={(0.03,0.97)}, anchor=north west},
legend entries={{GPS $[A_1]$},{BMP180 $[A_2]$}},
legend cell align={left},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addplot [semithick, color0]
table {%data}
path [draw=white, fill opacity=0] (axis cs:0,-1026.692)
--(axis cs:0,24734.252);
path [draw=white, fill opacity=0] (axis cs:1,-1026.692)
--(axis cs:1,24734.252);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
I just put a part of the code beacause is very long and there is too much data.
Thanks in advance!
tikz-pgf groupplots matplotlib2tikz
I'm trying to convert a subplot from python. I'm using matplotlib2tikz but there's an error I don't understand. The labels overlap the graphs.
How can I solve this?
This is the code:
documentclass[12pt, openany]{report}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage[french]{babel}
usepackage{pgfplots}
usepackage{amsmath}
usepackage{graphicx} %inclusion de figures
usepackage{pgf,tikz}
usetikzlibrary{babel}
usetikzlibrary{calc}
usepgfplotslibrary{groupplots}
pgfplotsset{
tick label style = {font = {fontsize{6 pt}{12 pt}selectfont}},
label style = {font = {fontsize{8 pt}{12 pt}selectfont}},
legend style = {font = {fontsize{8 pt}{12 pt}selectfont}},
title style = {font = {fontsize{8 pt}{12 pt}selectfont}},
}
begin{document}
begin{tikzpicture}
definecolor{color0}{rgb}{0.886274509803922,0.290196078431373,0.2}
definecolor{color1}{rgb}{0.203921568627451,0.541176470588235,0.741176470588235}
definecolor{color2}{rgb}{0.596078431372549,0.556862745098039,0.835294117647059}
begin{groupplot}[group style={group size=2 by 2}]
nextgroupplot[
title={textbf{Time vs Temperature}},
xlabel={Time[UTC]},
ylabel={Temperature [${circ}$C]},
xmin=-0.05, xmax=1.01,
ymin=-34.0035, ymax=37.5,
ytick={-30,-15,...,15,30},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!115.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
%legend style={black},
%legend style={draw=white!80.0!black},
legend cell align={left},
legend entries={{$T_1$},{$T_2$},{$T_3$}},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addplot [semithick, color0]
table {%}
path [draw=white, fill opacity=0] (axis cs:0,-34.0035)
--(axis cs:0,38.6735);
path [draw=white, fill opacity=0] (axis cs:1,-34.0035)
--(axis cs:1,38.6735);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
nextgroupplot[
title={textbf{Time vs Altitude}},
xlabel={Time [UTC]},
ylabel={Altitude [m]},
xmin=-0.05, xmax=1.05,
ymin=-1026.692, ymax=24734.252,
ytick={0,5000,10000,15000,20000,25000},
yticklabels={0,5000,10000,15000,20000,25000},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!92.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
legend style={at={(0.03,0.97)}, anchor=north west},
legend entries={{GPS $[A_1]$},{BMP180 $[A_2]$}},
legend cell align={left},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addplot [semithick, color0]
table {%}
path [draw=white, fill opacity=0] (axis cs:0,-34.0035)
--(axis cs:0,38.6735);
path [draw=white, fill opacity=0] (axis cs:1,-34.0035)
--(axis cs:1,38.6735);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
nextgroupplot[
title={textbf{Time vs Altitude}},
xlabel={Time [UTC]},
ylabel={Altitude [m]},
xmin=-0.05, xmax=1.05,
ymin=-1026.692, ymax=24734.252,
ytick={0,5000,10000,15000,20000,25000},
yticklabels={0,5000,10000,15000,20000,25000},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!92.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
legend style={at={(0.03,0.97)}, anchor=north west},
legend entries={{GPS $[A_1]$},{BMP180 $[A_2]$}},
legend cell align={left},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addplot [semithick, color0]
table {%data}
path [draw=white, fill opacity=0] (axis cs:0,-1026.692)
--(axis cs:0,24734.252);
path [draw=white, fill opacity=0] (axis cs:1,-1026.692)
--(axis cs:1,24734.252);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
I just put a part of the code beacause is very long and there is too much data.
Thanks in advance!
tikz-pgf groupplots matplotlib2tikz
tikz-pgf groupplots matplotlib2tikz
edited Feb 18 at 17:32
Zarko
125k867164
125k867164
asked Feb 18 at 16:12
Diego ValleDiego Valle
613
613
1
Well, obviously there is noend{groupplot} end{tikzpicture} end{document}}
. And then there isaddplot [semithick, color0] table {%}
....
– marmot
Feb 18 at 16:15
First, do the plots work as separate tikzpictures? Those45^circ
xticklabels are probably going to overlap the x label anyway. But mostly you need to increase/group/vertical sep
(page 454).
– John Kormylo
Feb 18 at 16:41
add a comment |
1
Well, obviously there is noend{groupplot} end{tikzpicture} end{document}}
. And then there isaddplot [semithick, color0] table {%}
....
– marmot
Feb 18 at 16:15
First, do the plots work as separate tikzpictures? Those45^circ
xticklabels are probably going to overlap the x label anyway. But mostly you need to increase/group/vertical sep
(page 454).
– John Kormylo
Feb 18 at 16:41
1
1
Well, obviously there is no
end{groupplot} end{tikzpicture} end{document}}
. And then there is addplot [semithick, color0] table {%}
....– marmot
Feb 18 at 16:15
Well, obviously there is no
end{groupplot} end{tikzpicture} end{document}}
. And then there is addplot [semithick, color0] table {%}
....– marmot
Feb 18 at 16:15
First, do the plots work as separate tikzpictures? Those
45^circ
xticklabels are probably going to overlap the x label anyway. But mostly you need to increase /group/vertical sep
(page 454).– John Kormylo
Feb 18 at 16:41
First, do the plots work as separate tikzpictures? Those
45^circ
xticklabels are probably going to overlap the x label anyway. But mostly you need to increase /group/vertical sep
(page 454).– John Kormylo
Feb 18 at 16:41
add a comment |
1 Answer
1
active
oldest
votes
The answer to your question why the labels overlap the graphs is that you are using the backwards compatibility mode. If you set compat=1.16
, these overlaps are gone, but your plot is too wide. I used the opportunity to clean up a bit and arrived at
documentclass[12pt, openany]{report}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage[french]{babel}
usepackage{amsmath}
usepackage{pgfplots}
usetikzlibrary{babel}
usetikzlibrary{calc}
usepgfplotslibrary{groupplots}
pgfplotsset{compat=1.16,
tick label style = {font = {fontsize{6pt}{12pt}selectfont}},
label style = {font = {fontsize{8pt}{12pt}selectfont}},
legend style = {font = {fontsize{8pt}{12pt}selectfont}},
title style = {font = {fontsize{8pt}{12pt}selectfont}},
%xlabel style={yshift=-1.2em} % if you do not like the newer compats
}
begin{document}
begin{tikzpicture}
definecolor{color0}{rgb}{0.886274509803922,0.290196078431373,0.2}
definecolor{color1}{rgb}{0.203921568627451,0.541176470588235,0.741176470588235}
definecolor{color2}{rgb}{0.596078431372549,0.556862745098039,0.835294117647059}
begin{groupplot}[group style={group size=2 by 2,vertical
sep=6em},width=0.49textwidth]
nextgroupplot[
title={textbf{Time vs Temperature}},
xlabel={Time[UTC]},
ylabel={Temperature [${circ}$C]},
xmin=-0.05, xmax=1.01,
ymin=-34.0035, ymax=37.5,
ytick={-30,-15,...,15,30},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!115.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
%legend style={black},
%legend style={draw=white!80.0!black},
legend cell align={left},
legend entries={{$T_1$},{$T_2$},{$T_3$}},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
% addplot [semithick, color0]
% table {%}
path [draw=white, fill opacity=0] (axis cs:0,-34.0035)
--(axis cs:0,38.6735);
path [draw=white, fill opacity=0] (axis cs:1,-34.0035)
--(axis cs:1,38.6735);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
nextgroupplot[
title={textbf{Time vs Altitude}},
xlabel={Time [UTC]},
ylabel={Altitude [m]},
xmin=-0.05, xmax=1.05,
ymin=-1026.692, ymax=24734.252,
ytick={0,5000,10000,15000,20000,25000},
yticklabels={0,5000,10000,15000,20000,25000},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!92.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
legend style={at={(0.03,0.97)}, anchor=north west},
legend entries={{GPS $[A_1]$},{BMP180 $[A_2]$}},
legend cell align={left},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
% addplot [semithick, color0]
% table {%}
path [draw=white, fill opacity=0] (axis cs:0,-34.0035)
--(axis cs:0,38.6735);
path [draw=white, fill opacity=0] (axis cs:1,-34.0035)
--(axis cs:1,38.6735);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
nextgroupplot[
title={textbf{Time vs Altitude}},
xlabel={Time [UTC]},
ylabel={Altitude [m]},
xmin=-0.05, xmax=1.05,
ymin=-1026.692, ymax=24734.252,
ytick={0,5000,10000,15000,20000,25000},
yticklabels={0,5000,10000,15000,20000,25000},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!92.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
legend style={at={(0.03,0.97)}, anchor=north west},
legend entries={{GPS $[A_1]$},{BMP180 $[A_2]$}},
legend cell align={left},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
% addplot [semithick, color0]
% table {%data}
path [draw=white, fill opacity=0] (axis cs:0,-1026.692)
--(axis cs:0,24734.252);
path [draw=white, fill opacity=0] (axis cs:1,-1026.692)
--(axis cs:1,24734.252);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
end{groupplot}
end{tikzpicture}
end{document}
There is certainly more room for improvement.
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f475519%2ferror-with-label-in-a-groupplot%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
The answer to your question why the labels overlap the graphs is that you are using the backwards compatibility mode. If you set compat=1.16
, these overlaps are gone, but your plot is too wide. I used the opportunity to clean up a bit and arrived at
documentclass[12pt, openany]{report}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage[french]{babel}
usepackage{amsmath}
usepackage{pgfplots}
usetikzlibrary{babel}
usetikzlibrary{calc}
usepgfplotslibrary{groupplots}
pgfplotsset{compat=1.16,
tick label style = {font = {fontsize{6pt}{12pt}selectfont}},
label style = {font = {fontsize{8pt}{12pt}selectfont}},
legend style = {font = {fontsize{8pt}{12pt}selectfont}},
title style = {font = {fontsize{8pt}{12pt}selectfont}},
%xlabel style={yshift=-1.2em} % if you do not like the newer compats
}
begin{document}
begin{tikzpicture}
definecolor{color0}{rgb}{0.886274509803922,0.290196078431373,0.2}
definecolor{color1}{rgb}{0.203921568627451,0.541176470588235,0.741176470588235}
definecolor{color2}{rgb}{0.596078431372549,0.556862745098039,0.835294117647059}
begin{groupplot}[group style={group size=2 by 2,vertical
sep=6em},width=0.49textwidth]
nextgroupplot[
title={textbf{Time vs Temperature}},
xlabel={Time[UTC]},
ylabel={Temperature [${circ}$C]},
xmin=-0.05, xmax=1.01,
ymin=-34.0035, ymax=37.5,
ytick={-30,-15,...,15,30},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!115.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
%legend style={black},
%legend style={draw=white!80.0!black},
legend cell align={left},
legend entries={{$T_1$},{$T_2$},{$T_3$}},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
% addplot [semithick, color0]
% table {%}
path [draw=white, fill opacity=0] (axis cs:0,-34.0035)
--(axis cs:0,38.6735);
path [draw=white, fill opacity=0] (axis cs:1,-34.0035)
--(axis cs:1,38.6735);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
nextgroupplot[
title={textbf{Time vs Altitude}},
xlabel={Time [UTC]},
ylabel={Altitude [m]},
xmin=-0.05, xmax=1.05,
ymin=-1026.692, ymax=24734.252,
ytick={0,5000,10000,15000,20000,25000},
yticklabels={0,5000,10000,15000,20000,25000},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!92.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
legend style={at={(0.03,0.97)}, anchor=north west},
legend entries={{GPS $[A_1]$},{BMP180 $[A_2]$}},
legend cell align={left},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
% addplot [semithick, color0]
% table {%}
path [draw=white, fill opacity=0] (axis cs:0,-34.0035)
--(axis cs:0,38.6735);
path [draw=white, fill opacity=0] (axis cs:1,-34.0035)
--(axis cs:1,38.6735);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
nextgroupplot[
title={textbf{Time vs Altitude}},
xlabel={Time [UTC]},
ylabel={Altitude [m]},
xmin=-0.05, xmax=1.05,
ymin=-1026.692, ymax=24734.252,
ytick={0,5000,10000,15000,20000,25000},
yticklabels={0,5000,10000,15000,20000,25000},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!92.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
legend style={at={(0.03,0.97)}, anchor=north west},
legend entries={{GPS $[A_1]$},{BMP180 $[A_2]$}},
legend cell align={left},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
% addplot [semithick, color0]
% table {%data}
path [draw=white, fill opacity=0] (axis cs:0,-1026.692)
--(axis cs:0,24734.252);
path [draw=white, fill opacity=0] (axis cs:1,-1026.692)
--(axis cs:1,24734.252);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
end{groupplot}
end{tikzpicture}
end{document}
There is certainly more room for improvement.
add a comment |
The answer to your question why the labels overlap the graphs is that you are using the backwards compatibility mode. If you set compat=1.16
, these overlaps are gone, but your plot is too wide. I used the opportunity to clean up a bit and arrived at
documentclass[12pt, openany]{report}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage[french]{babel}
usepackage{amsmath}
usepackage{pgfplots}
usetikzlibrary{babel}
usetikzlibrary{calc}
usepgfplotslibrary{groupplots}
pgfplotsset{compat=1.16,
tick label style = {font = {fontsize{6pt}{12pt}selectfont}},
label style = {font = {fontsize{8pt}{12pt}selectfont}},
legend style = {font = {fontsize{8pt}{12pt}selectfont}},
title style = {font = {fontsize{8pt}{12pt}selectfont}},
%xlabel style={yshift=-1.2em} % if you do not like the newer compats
}
begin{document}
begin{tikzpicture}
definecolor{color0}{rgb}{0.886274509803922,0.290196078431373,0.2}
definecolor{color1}{rgb}{0.203921568627451,0.541176470588235,0.741176470588235}
definecolor{color2}{rgb}{0.596078431372549,0.556862745098039,0.835294117647059}
begin{groupplot}[group style={group size=2 by 2,vertical
sep=6em},width=0.49textwidth]
nextgroupplot[
title={textbf{Time vs Temperature}},
xlabel={Time[UTC]},
ylabel={Temperature [${circ}$C]},
xmin=-0.05, xmax=1.01,
ymin=-34.0035, ymax=37.5,
ytick={-30,-15,...,15,30},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!115.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
%legend style={black},
%legend style={draw=white!80.0!black},
legend cell align={left},
legend entries={{$T_1$},{$T_2$},{$T_3$}},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
% addplot [semithick, color0]
% table {%}
path [draw=white, fill opacity=0] (axis cs:0,-34.0035)
--(axis cs:0,38.6735);
path [draw=white, fill opacity=0] (axis cs:1,-34.0035)
--(axis cs:1,38.6735);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
nextgroupplot[
title={textbf{Time vs Altitude}},
xlabel={Time [UTC]},
ylabel={Altitude [m]},
xmin=-0.05, xmax=1.05,
ymin=-1026.692, ymax=24734.252,
ytick={0,5000,10000,15000,20000,25000},
yticklabels={0,5000,10000,15000,20000,25000},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!92.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
legend style={at={(0.03,0.97)}, anchor=north west},
legend entries={{GPS $[A_1]$},{BMP180 $[A_2]$}},
legend cell align={left},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
% addplot [semithick, color0]
% table {%}
path [draw=white, fill opacity=0] (axis cs:0,-34.0035)
--(axis cs:0,38.6735);
path [draw=white, fill opacity=0] (axis cs:1,-34.0035)
--(axis cs:1,38.6735);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
nextgroupplot[
title={textbf{Time vs Altitude}},
xlabel={Time [UTC]},
ylabel={Altitude [m]},
xmin=-0.05, xmax=1.05,
ymin=-1026.692, ymax=24734.252,
ytick={0,5000,10000,15000,20000,25000},
yticklabels={0,5000,10000,15000,20000,25000},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!92.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
legend style={at={(0.03,0.97)}, anchor=north west},
legend entries={{GPS $[A_1]$},{BMP180 $[A_2]$}},
legend cell align={left},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
% addplot [semithick, color0]
% table {%data}
path [draw=white, fill opacity=0] (axis cs:0,-1026.692)
--(axis cs:0,24734.252);
path [draw=white, fill opacity=0] (axis cs:1,-1026.692)
--(axis cs:1,24734.252);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
end{groupplot}
end{tikzpicture}
end{document}
There is certainly more room for improvement.
add a comment |
The answer to your question why the labels overlap the graphs is that you are using the backwards compatibility mode. If you set compat=1.16
, these overlaps are gone, but your plot is too wide. I used the opportunity to clean up a bit and arrived at
documentclass[12pt, openany]{report}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage[french]{babel}
usepackage{amsmath}
usepackage{pgfplots}
usetikzlibrary{babel}
usetikzlibrary{calc}
usepgfplotslibrary{groupplots}
pgfplotsset{compat=1.16,
tick label style = {font = {fontsize{6pt}{12pt}selectfont}},
label style = {font = {fontsize{8pt}{12pt}selectfont}},
legend style = {font = {fontsize{8pt}{12pt}selectfont}},
title style = {font = {fontsize{8pt}{12pt}selectfont}},
%xlabel style={yshift=-1.2em} % if you do not like the newer compats
}
begin{document}
begin{tikzpicture}
definecolor{color0}{rgb}{0.886274509803922,0.290196078431373,0.2}
definecolor{color1}{rgb}{0.203921568627451,0.541176470588235,0.741176470588235}
definecolor{color2}{rgb}{0.596078431372549,0.556862745098039,0.835294117647059}
begin{groupplot}[group style={group size=2 by 2,vertical
sep=6em},width=0.49textwidth]
nextgroupplot[
title={textbf{Time vs Temperature}},
xlabel={Time[UTC]},
ylabel={Temperature [${circ}$C]},
xmin=-0.05, xmax=1.01,
ymin=-34.0035, ymax=37.5,
ytick={-30,-15,...,15,30},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!115.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
%legend style={black},
%legend style={draw=white!80.0!black},
legend cell align={left},
legend entries={{$T_1$},{$T_2$},{$T_3$}},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
% addplot [semithick, color0]
% table {%}
path [draw=white, fill opacity=0] (axis cs:0,-34.0035)
--(axis cs:0,38.6735);
path [draw=white, fill opacity=0] (axis cs:1,-34.0035)
--(axis cs:1,38.6735);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
nextgroupplot[
title={textbf{Time vs Altitude}},
xlabel={Time [UTC]},
ylabel={Altitude [m]},
xmin=-0.05, xmax=1.05,
ymin=-1026.692, ymax=24734.252,
ytick={0,5000,10000,15000,20000,25000},
yticklabels={0,5000,10000,15000,20000,25000},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!92.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
legend style={at={(0.03,0.97)}, anchor=north west},
legend entries={{GPS $[A_1]$},{BMP180 $[A_2]$}},
legend cell align={left},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
% addplot [semithick, color0]
% table {%}
path [draw=white, fill opacity=0] (axis cs:0,-34.0035)
--(axis cs:0,38.6735);
path [draw=white, fill opacity=0] (axis cs:1,-34.0035)
--(axis cs:1,38.6735);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
nextgroupplot[
title={textbf{Time vs Altitude}},
xlabel={Time [UTC]},
ylabel={Altitude [m]},
xmin=-0.05, xmax=1.05,
ymin=-1026.692, ymax=24734.252,
ytick={0,5000,10000,15000,20000,25000},
yticklabels={0,5000,10000,15000,20000,25000},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!92.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
legend style={at={(0.03,0.97)}, anchor=north west},
legend entries={{GPS $[A_1]$},{BMP180 $[A_2]$}},
legend cell align={left},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
% addplot [semithick, color0]
% table {%data}
path [draw=white, fill opacity=0] (axis cs:0,-1026.692)
--(axis cs:0,24734.252);
path [draw=white, fill opacity=0] (axis cs:1,-1026.692)
--(axis cs:1,24734.252);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
end{groupplot}
end{tikzpicture}
end{document}
There is certainly more room for improvement.
The answer to your question why the labels overlap the graphs is that you are using the backwards compatibility mode. If you set compat=1.16
, these overlaps are gone, but your plot is too wide. I used the opportunity to clean up a bit and arrived at
documentclass[12pt, openany]{report}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage[french]{babel}
usepackage{amsmath}
usepackage{pgfplots}
usetikzlibrary{babel}
usetikzlibrary{calc}
usepgfplotslibrary{groupplots}
pgfplotsset{compat=1.16,
tick label style = {font = {fontsize{6pt}{12pt}selectfont}},
label style = {font = {fontsize{8pt}{12pt}selectfont}},
legend style = {font = {fontsize{8pt}{12pt}selectfont}},
title style = {font = {fontsize{8pt}{12pt}selectfont}},
%xlabel style={yshift=-1.2em} % if you do not like the newer compats
}
begin{document}
begin{tikzpicture}
definecolor{color0}{rgb}{0.886274509803922,0.290196078431373,0.2}
definecolor{color1}{rgb}{0.203921568627451,0.541176470588235,0.741176470588235}
definecolor{color2}{rgb}{0.596078431372549,0.556862745098039,0.835294117647059}
begin{groupplot}[group style={group size=2 by 2,vertical
sep=6em},width=0.49textwidth]
nextgroupplot[
title={textbf{Time vs Temperature}},
xlabel={Time[UTC]},
ylabel={Temperature [${circ}$C]},
xmin=-0.05, xmax=1.01,
ymin=-34.0035, ymax=37.5,
ytick={-30,-15,...,15,30},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!115.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
%legend style={black},
%legend style={draw=white!80.0!black},
legend cell align={left},
legend entries={{$T_1$},{$T_2$},{$T_3$}},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
% addplot [semithick, color0]
% table {%}
path [draw=white, fill opacity=0] (axis cs:0,-34.0035)
--(axis cs:0,38.6735);
path [draw=white, fill opacity=0] (axis cs:1,-34.0035)
--(axis cs:1,38.6735);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
nextgroupplot[
title={textbf{Time vs Altitude}},
xlabel={Time [UTC]},
ylabel={Altitude [m]},
xmin=-0.05, xmax=1.05,
ymin=-1026.692, ymax=24734.252,
ytick={0,5000,10000,15000,20000,25000},
yticklabels={0,5000,10000,15000,20000,25000},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!92.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
legend style={at={(0.03,0.97)}, anchor=north west},
legend entries={{GPS $[A_1]$},{BMP180 $[A_2]$}},
legend cell align={left},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
% addplot [semithick, color0]
% table {%}
path [draw=white, fill opacity=0] (axis cs:0,-34.0035)
--(axis cs:0,38.6735);
path [draw=white, fill opacity=0] (axis cs:1,-34.0035)
--(axis cs:1,38.6735);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
nextgroupplot[
title={textbf{Time vs Altitude}},
xlabel={Time [UTC]},
ylabel={Altitude [m]},
xmin=-0.05, xmax=1.05,
ymin=-1026.692, ymax=24734.252,
ytick={0,5000,10000,15000,20000,25000},
yticklabels={0,5000,10000,15000,20000,25000},
xtick={-0.2,0,0.2,0.4,0.6,0.8,1,1.2},
xticklabels={12:05:05,12:15:39,12:26:12,12:36:45,12:47:18,12:57:51,13:08:25,13:18:58},
tick align=outside,
xticklabel style = {rotate=45},
tick pos=left,
xmajorgrids,
x grid style={lightgray!92.02614379084967!black},
ymajorgrids,
y grid style={lightgray!92.02614379084967!black},
%axis line style={white},
%axis background/.style={fill=white!89.80392156862746!black},
legend style={at={(0.03,0.97)}, anchor=north west},
legend entries={{GPS $[A_1]$},{BMP180 $[A_2]$}},
legend cell align={left},
scaled y ticks=false,
/pgf/number format/.cd,
1000 sep={},
grid=both,
minor tick num=1
]
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
addlegendimage{no markers, color2}
addlegendimage{no markers, color0}
addlegendimage{no markers, color1}
% addplot [semithick, color0]
% table {%data}
path [draw=white, fill opacity=0] (axis cs:0,-1026.692)
--(axis cs:0,24734.252);
path [draw=white, fill opacity=0] (axis cs:1,-1026.692)
--(axis cs:1,24734.252);
path [draw=white, fill opacity=0] (axis cs:-0.05,0)
--(axis cs:1.05,0);
path [draw=white, fill opacity=0] (axis cs:-0.05,1)
--(axis cs:1.05,1);
end{groupplot}
end{tikzpicture}
end{document}
There is certainly more room for improvement.
answered Feb 19 at 1:21
marmotmarmot
103k4123234
103k4123234
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f475519%2ferror-with-label-in-a-groupplot%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
1
Well, obviously there is no
end{groupplot} end{tikzpicture} end{document}}
. And then there isaddplot [semithick, color0] table {%}
....– marmot
Feb 18 at 16:15
First, do the plots work as separate tikzpictures? Those
45^circ
xticklabels are probably going to overlap the x label anyway. But mostly you need to increase/group/vertical sep
(page 454).– John Kormylo
Feb 18 at 16:41