master
Eugen Betke 2020-09-03 20:45:37 +02:00
parent e4dd65c064
commit ebe8b7e028
4 changed files with 7 additions and 3 deletions

View File

@ -24,7 +24,9 @@ prepare
for I in job_similarities_*.csv ; do
rm *.png *.pdf
echo "processing $I"
./scripts/plot.R $I > description.txt 2>&1
set -x
./scripts/plot.R $I > description.txt 2>&1
set +x
OUT=${I%%.csv}-out
mkdir $OUT
if [[ $CLEAN != "0" ]] ; then

View File

@ -4,7 +4,8 @@
mkdir fig
for job in 5024292 4296426 7488914 ; do
./scripts/plot-single-job.py $job "fig/job-"
#./scripts/plot-single-job.py $job "fig/job-"
./scripts/plot-single-ks-jobs.py $job "fig/job-"
done
# Remove whitespace around jobs

View File

@ -114,7 +114,8 @@ def plot(prefix, header, row):
#bins = np.linspace(0, 60, 13)
#g.map(plt.hist, "total_bill", color="steelblue", bins=bins)
ax = metrics.hist(sharex=True, grid = True, sharey=True, figsize=fsizeHist, bins=10)
#ax = metrics.hist(sharex=True, grid = True, sharey=True, figsize=fsizeHist, bins=10)
ax = metrics.hist(grid = True, sharey=True, figsize=fsizeHist, bins=10)
pyplot.savefig(prefix + "hist" + jobid + fileformat, bbox_inches='tight', dpi=150)

0
scripts/plot-single-ks-jobs.py 100644 → 100755
View File