В gnuplotting, когда я увеличиваю размер шрифта ylabel и ytics, они начинают перекрываться. Я попытался создать между ними зазор, но не нашел решения. Был бы очень признателен за помощь в этом отношении.
set autoscale
unset log
unset label
set xtic auto
set ytic auto
set tics font "Helvetica,18"
set key font "Helvetica,18"
set xlabel font "Helvetica,18"
set ylabel font "Helvetica,18"
set xlabel "Iteration Day"
set ylabel "Number of Persons"
set key inside
set key right
set key top
plot "SIR_I11_L2_T036.txt" using 1:2 title 'CurInf' with lines lt "5" lw "3", \
"SIR_I11_L2_T036.txt" using 1:3 title 'totInf' with lines lt "10" lw "3", \
"SIR_I11_L2_T036.txt" using 1:4 title 'Susceptible' with lines lt "15" lw "3", \
"SIR_I11_L2_T036.txt" using 1:5 title 'Exposed' with lines lt "20" lw "3", \
"SIR_I11_L2_T036.txt" using 1:7 title 'Recovered' with lines lt "25" lw "3"