write_wos_data.Rd
Writes each of the data frames in an object of class wos_data
to its
own csv file.
write_wos_data(wos_data, dir)
wos_data | An object of class |
---|---|
dir | Path to the directory where you want to write the files. If the
directory doesn't yet exist, |
Nothing. Files are written to disk.
# NOT RUN { sid <- auth("your_username", password = "your_password") wos_data <- pull_wos("TS = (dog welfare) AND PY = 2010", sid = sid) # Write files to working directory write_wos_data(wos_data, ".") # Write files to "wos-data" dir write_wos_data(wos_data, "wos-data") # }