View source: R/feature-provenance-manifest.R
| write_gazepoint_feature_manifest_csv | R Documentation |
Writes a feature manifest or one table from a validated manifest to a UTF-8 CSV file. Existing files are not replaced unless explicitly permitted.
write_gazepoint_feature_manifest_csv(
x,
file,
table = c("manifest", "issues", "checks"),
overwrite = FALSE,
na = ""
)
x |
A |
file |
A single output path ending in |
table |
Table to export. One of |
overwrite |
Logical. When |
na |
Character value used for missing values. |
The normalized output path, invisibly.
manifest <- create_gazepoint_feature_manifest(
features = "fixation_duration",
scientific_source = "Gazepoint fixation export",
source_table = "fixations",
transformation = "Trial-level mean",
availability_stage = "during_exposure",
prediction_time_available = TRUE,
preprocessing_scope = "none",
fold_local_required = FALSE
)
output <- tempfile(fileext = ".csv")
write_gazepoint_feature_manifest_csv(
manifest,
output
)
unlink(output)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.