gpintro-arstexnica/04_histogram.gp

27 lines
648 B
Plaintext
Raw Normal View History

2011-03-18 02:17:35 +01:00
#
# 04_histogram
#
# Created by Emiliano Vavassori on 2011-03-15.
# Copyright (c) 2011 __MyCompanyName__. All rights reserved.
#
set encoding utf8
set terminal pdfcairo enhanced color font 'Arial,5' size 7.5cm, 7.5cm
2011-03-18 02:17:35 +01:00
set output "../img/04_histogram.pdf"
set title "Presenza di Internet nelle \
famiglie"
set xlabel "Province"
set ylabel "Percentuale (%)"
set border 3
set key below
set xtics out rotate 90 nomirror
set ytics out nomirror
set grid ytics
set style data histograms
set style histogram rowstacked
set boxwidth 0.8
2011-03-18 02:17:35 +01:00
set style fill transparent solid 0.5
plot '04_histogram.dat' using 2:xtic(1) \
title "No", '' using 3 title "Sì"