blob: 4726c3a3926e71112fc2dceeebb3fad93fe9acf2 (
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_2019_2025_percent.svg";
set ylabel "Common packages [%]";
set xlabel "Number analyzed packages having the most dependees";
set key noautotitle;
set linetype 1 linecolor rgb "0x333333";
set style data lines;
set grid;
set yrange [0:100];
plot "common_2019_2025_percent.txt" using 0:1;
|