template_read {CRediTas}R Documentation

Read a template from a csv file

Description

The template should be created using create_template()

Usage

template_read(file)

Arguments

file

A character vector with the path to the csv file

Value

a data.frame with the content of the csv file

Examples

# Create a temporary file for this example
file <- tempfile()

# Create a template and save it to a csv file
template_create(authors = c("Josep Maria", "Jane Doe"), file = file)

# Read the template back (in real life once it has been populated)
template_read(file)

[Package CRediTas version 0.2.0 Index]