aboutsummaryrefslogtreecommitdiff
path: root/common_nondev_dev_percent.gnuplot
blob: 4e12d997150702eeb02ea859504e1d014782bf79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env gnuplot

## SPDX-License-Identifier: CC0-1.0
##
## Copyright (C) 2025 Woj. Kosior <koszko@koszko.org>

set terminal svg size 800,400 font "DejaVu,sans,14.5";
set output "common_nondev_dev_percent.svg";
set ylabel "Common packages [%]";
set xlabel "Number of the most (dev)depended packages analyzed";
set key noautotitle;
set linetype 1 linecolor rgb "0x333333";
set style data lines;
set grid;
set yrange [0:100];
plot "common_nondev_dev_percent.txt" using 0:1;