Update weekly_stats.yaml

This commit is contained in:
Alexandre
2023-01-09 14:35:38 +01:00
committed by GitHub
parent 08b758bd3a
commit a1649ec66a

View File

@@ -135,15 +135,19 @@ jobs:
# Plot graph # Plot graph
sudo apt-get install gnuplot-nox -y sudo apt-get install gnuplot-nox -y
gnuplot-nox -persist <<-EOFMarker gnuplot-nox -persist <<-EOFMarker
set title 'Total addons'
set ylabel 'Number of installations'
#set xlabel 'Día'
set xdata time set xdata time
set timefmt "%y-%m-%d" set timefmt "%Y-%m-%d"
set format x "%y-%m-%d" set format x "%y-%m-%d"
set ylabel "Total installed addons" set datafile sep ' '
show ylabel set key top left autotitle columnheader
plot 'Stats3' #set grid
set term png set autoscale
set output "stats.png" set terminal png size 720,650
replot set output 'stats.png'
plot 'Stats3' using 1:2 lt rgb 'red' w l title 'Total addons'
EOFMarker EOFMarker
rm Stats3 rm Stats3
- name: Commit if needed - name: Commit if needed