#!/usr/bin/env gnuplot ## SPDX-License-Identifier: CC0-1.0 ## ## Copyright (C) 2025 Woj. Kosior 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;