R/read_in_files.R
read_unit_data.RdCreate a data frame of units from csv file Use this is you have a spreadsheet of units already created.
read_unit_data(file_path = "units.csv", data_frame_name = "qcoder_units", project_name, project_path = "", units_df_path = "")
| file_path | path to a file containing unit data in csv. |
|---|---|
| data_frame_name | The name of the RDS file that the data frame will be stored in. |
| project_name | Name of project if available |
| project_path | Full path to the project folder. |
| units_df_path | Full path to the units data frame. |
# NOT RUN { fp <-"units/units.csv" dfn <- "my_units" read_unit_data(fp, dfn) # }