aboutsummaryrefslogtreecommitdiff
path: root/common_nondev_dev_percent.gnuplot
diff options
context:
space:
mode:
authorW. Kosior <koszko@koszko.org>2025-09-19 12:47:44 +0200
committerW. Kosior <koszko@koszko.org>2025-09-19 13:09:45 +0200
commit7000b1f2bb2fca5b7707c9b1a9f58f43100212d3 (patch)
treecc5531b93b8e76c39e3c58d52574f68e86c3f05e /common_nondev_dev_percent.gnuplot
downloadAGH-msc-thesis-magister.tar.gz
AGH-msc-thesis-magister.zip
Initial commit.HEADmagister
Diffstat (limited to 'common_nondev_dev_percent.gnuplot')
-rwxr-xr-xcommon_nondev_dev_percent.gnuplot16
1 files changed, 16 insertions, 0 deletions
diff --git a/common_nondev_dev_percent.gnuplot b/common_nondev_dev_percent.gnuplot
new file mode 100755
index 0000000..4e12d99
--- /dev/null
+++ b/common_nondev_dev_percent.gnuplot
@@ -0,0 +1,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;