Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwenseleers committed Nov 14, 2018
1 parent 3cd3380 commit 2ed1ae3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion R/graph2bitmap.R
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ graph2bitmap = function(x = NULL, file = "Rplot", fun = NULL, type = c("PNG","JP
if(options()$device){
plotsize = dev.size()
} else {
plotsize = c(10,10) # default device size: 10 inch x 10 inch
plotsize = c(7,5) # default device size: 10 inch x 10 inch
}

w = plotsize[[1]]
Expand Down
2 changes: 1 addition & 1 deletion R/graph2office.R
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ graph2office = function(x = NULL, file = "Rplot", fun = NULL, type = c("PPT","DO
if(options()$device){
plotsize = dev.size()
} else {
plotsize = c(10,10) # default device size: 10 inch x 10 inch
plotsize = c(7,5) # default device size: 10 inch x 10 inch
}

w = plotsize[[1]]
Expand Down
2 changes: 1 addition & 1 deletion R/graph2vector.R
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ graph2vector = function(x = NULL, file = "Rplot", fun = NULL, type = "SVG",
if(options()$device){
plotsize = dev.size()
} else {
plotsize = c(10,10) # default device size: 10 inch x 10 inch
plotsize = c(7,5) # default device size: 10 inch x 10 inch
}

w = plotsize[[1]]
Expand Down

0 comments on commit 2ed1ae3

Please sign in to comment.