View source: R/file_utilities.R
import_rb | R Documentation |
Import a ReaderBench output file(.csv) into R.
import_rb(path)
path |
A string giving the path and filename to import. |
predict_quality
#' ##Example 1:
#Using a sample data file included with writeAlizer package
#load package
library(writeAlizer)
#get path of sample ReaderBench output file
file_path <- system.file("extdata", "sample_rb.csv", package = "writeAlizer")
#see path to sample file
file_path
#import file and store as "rb_file"
rb_file <- import_rb(file_path)
##Example 2:
#To import as "rb_file" a ReaderBench file (sample name: rb_output.csv)
#that is stored in the working directory
## Not run:
rb_file <- import_rb("rb_output.csv")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.