Skip to content

Instantly share code, notes, and snippets.

@jennybc
Last active March 2, 2016 10:48
Show Gist options
  • Save jennybc/0be6e2caec184086ac3c to your computer and use it in GitHub Desktop.
Save jennybc/0be6e2caec184086ac3c to your computer and use it in GitHub Desktop.
Put a JPG in a Google Sheet cell from R
library(googlesheets)
cdp <- "http://i.imgur.com/lrg4uy5.jpg"
cell_contents <- paste0("=IMAGE(\"", cdp, "\", 2)")
ss <- gs_new("cute-dog-photo-in-cell-2", input = cell_contents)
gs_browse(ss) ## you'll have to change the row size in the browser
## ss$browser_url
## https://docs.google.com/spreadsheets/d/1_tV_Iflm_z-QM2C6gPCR9Azbzrfk0VqMx-wrgTlbko8/
@jennybc
Copy link
Author

jennybc commented Feb 25, 2016

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment