Thank you for the quick replies. I appreciate it.
And yep, I did use googledrive after creating the new sheet with googlesheets. To be more explicit, this is what my code looks like using the iris dataset and a folder in "My Drive" called "R/Demo":
library(googlesheets)
library(googledrive)
gs_auth()
data(iris)
gs_new(title = "iris sheet", input = iris)
drive_mv("iris sheet", path = "~/R/Demo/")
So, the two-steps aren't too tough. I was just curious to know if it could be done just using googlesheets alone.
I can also see how it's possible to use only the googledrive package by saving the data.frame as a .csv and using drive_upload(). I prefer to skip the csv step, however.
And @olyerickson, I didn't think I needed drive_mkdir() because the folder already existed. Are you saying there's way to use that function and gs_new() together?
Lastly, it could have been my error but I didn't see a way to tag this question with "googledrive". Only "googlesheets" was available.
Thanks again.