Finally. A video that helps me to save r images in a higher resolution
@univ41soukahras483 ай бұрын
thank you for this video. I have a problem when I want to open the image it does not appear (turns white) my_palette
@DB-kv3wu4 ай бұрын
❤ Best tutor! Thanks!
@shawsheryl5092 Жыл бұрын
excellent tutorial! But I notice that at 11:32 in the console there's still an error when runing yplot(), it should be "yplot" not "yplot()"
@AndZP82 жыл бұрын
Thanks for the video! Very useful information here! By the way, I don't know if you have already tried, but there is also a good R library for wraping plots, it is called patchwork.
@LiquidBrain2 жыл бұрын
patchwork is great too !
@nimraandrew82783 жыл бұрын
Thank you so much for easiest ways :)
@radhikabalachandran75252 жыл бұрын
sir how to save a nonggplot in r to specific folder with high resolution
@evis5056 Жыл бұрын
That was super helpful!
@ellesawyer41942 жыл бұрын
Super helpful! thank you
@patrickbigbigx53122 жыл бұрын
ggpubr stands for public ready? ..... I just want leave a comment to mark this valuable vedio~
@LiquidBrain2 жыл бұрын
I believe the original documents call it “ publication ready” 😃
@qusay69482 жыл бұрын
Hello, I used this code to save the image "png(filename = "authorkeywords.png", width = 20, height = 10, units= "cm", res = 400)", but it doesn't work. Is there any code to save the image with customize.
@LiquidBrain2 жыл бұрын
try this >png(filename = "authorkeywords.png", width = 20, height = 10, units= "cm", res = 400) >plot(iris) >dev.off() this will open the canvas, plot in the image, and then save the image.
@qusay69482 жыл бұрын
I checked many videos. No one discusses how to save the picture just save.
@rabiaashraf23833 жыл бұрын
How save image in postscript format?
@LiquidBrain3 жыл бұрын
I think you can refer to this website here: r-coder.com/save-plot-r/