matchmaker_example {matchmaker}R Documentation

show the path to a matchmaker example file

Description

show the path to a matchmaker example file

Usage

matchmaker_example(name = NULL)

Arguments

name

the name of a matchmaker example file

Value

a path to a matchmaker example file

Author(s)

Zhian N. Kamvar

Examples

matchmaker_example() # list all of the example files

# read in example spelling dictionary
sd <- matchmaker_example("spelling-dictionary.csv")
read.csv(sd, stringsAsFactors = FALSE)

# read in example coded data
coded_data <- matchmaker_example("coded-data.csv")
coded_data <- read.csv(coded_data, stringsAsFactors = FALSE)
str(coded_data)
coded_data$date <- as.Date(coded_data$date)

[Package matchmaker version 0.1.1 Index]