diff options
Diffstat (limited to 'bin/make_graph.py')
-rwxr-xr-x | bin/make_graph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/make_graph.py b/bin/make_graph.py index f03e5633..db098b22 100755 --- a/bin/make_graph.py +++ b/bin/make_graph.py @@ -23,7 +23,7 @@ def main(): countsfile = os.path.join(filein) pngfile = os.path.join(fileout) grdevices = importr('grDevices') - grdevices.png(file=pngfile, width=1600, height=800, pointsize=10, res=100, antialias="none") + grdevices.png(file=pngfile, width=1920, height=960, pointsize=10, res=100, antialias="none") r = robjects.r r('t <- (read.table("'+countsfile+'",sep=",",header=1,row.names=1))') r('cname <- c("date",rep(colnames(t)))') |