read_wos_data.Rd
Reads in a series of CSV files (which were written via
write_wos_data
) and places the data in an object of class
wos_data
.
read_wos_data(dir)
dir | Path to the directory where you wrote the CSV files. |
---|
An object of class wos_data
.
# 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, ".") # Read data back into R wos_data <- read_wos_data(".") # }