用于将图像插入 Google 表格的 R 脚本

R script to insert images into Google Sheets

有没有办法使用 R 脚本将图像(在本例中为 ggplot2 图表)插入 Google Sheet?也许使用 googlesheets 包?

我知道如何 add an image to an Excel spreadsheet 并且我可以通过 Insert 在我的浏览器中将图像添加到 Google Sheet -> Image 在 Sheet 菜单中。但我想从 R 脚本中将图像添加到我的 sheet。

这有点乱七八糟,默认情况下,图像似乎会精确地占据一个单元格的大小。不过是插入图片的方式:

x <- gs_edit_cells(ss=x, ws="y", input='=IMAGE("https://i.stack.imgur.com/FrDZc.jpg")')

然后您可以在 Google 工作表中手动调整单元格的大小,从而调整图像的大小。

当然,现在的新问题是如何在 R 中为图像提供网址 --- 但我认为这并不难。