Created
May 1, 2015 22:10
-
-
Save nathan-cruz77/a2c3282b6012e6d2819e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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