Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

3 results for “from:Adam Wysokiński”

ggsave() with width only
Adam Wysokiński · Sep 13, 2021 · r-help

Hi, Instead of ggsave(), use save_plot() from the "cowplot" package: library(ggplot2) library(cowplot) x <- 1:10 y <- x^2 df <- data.frame(x, y) p <- ggplot(df, aes(x, y)) + geom_point() save_plot("/tmp/plot.png", p...

ggsave() with width only
Adam Wysokiński · Sep 20, 2021 · r-help

Dear Ivan, I think you don't need to provide the aspect ratio, as this should work as well: save_plot("/tmp/plot.png", p, base_width = 5, base_height = NULL) -- Regards, Adam Wysoki?ski On 9/20/21 16...

Configure error: checking if libcurl supports https... no
Adam Wysokiński · Aug 29, 2021 · r-help

Hi, What you need is the libcurl library, not the program curl (which you have installed): sudo apt-get install libcurl4 and probably (if not installed automatically by apt): sudo apt-get install libcurl4-openssl-dev Now it should work...

Can't find what you're looking for? Try searching with Google .