Skip to content

Instantly share code, notes, and snippets.

@nathan-cruz77
Created May 1, 2015 22:10
Show Gist options
  • Save nathan-cruz77/a2c3282b6012e6d2819e to your computer and use it in GitHub Desktop.
Save nathan-cruz77/a2c3282b6012e6d2819e to your computer and use it in GitHub Desktop.
set terminal jpeg size 1080, 600
set out 'grafico.jpeg'
set ylabel 'Y'
set xlabel 'X'
# Pode adicionar cada grafico em uma linha mas, nesse caso,
# tem que terminar a linha anterior com o caractere \ (como
# no exemplo abaixo). Se for colocar todos os graficos na
# mema linha basta separa cada um com uma virgula.
plot './data.in' using 1:2 title 'data.in' with lines, \
'./data2.in' using 1:2 title 'data2.in' with lines
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment