save2csv: Save the 'cooperatives' dataset to a *.csv file

Description Usage Arguments Author(s) See Also Examples

View source: R/save2csv.R

Description

Saves the entire cooperatives dataset to a *.csv file that can be manipulated by the user. BUT any modifications done to the file are not replicable and difficult to incorporate into the original database!

Usage

1
save2csv(filename = NULL)

Arguments

filename

A character string that specifies the desired name of the file. The user can also specify the directory relative to its current working directory with a customary approach of "./RootFolder/MyDesiredFolder/filename". There is no need to specify file extension! If NULL (de default), the file is saved as cooperatives.csv in the current working directory.

Author(s)

Juan Carlos

See Also

cooperatives

Examples

1
2
3
4
5
6
7
8
# Save database with default name
save2csv()

# Save to current directory with custom name
save2csv(filename = "coop_data")

# Save database to a desired working directory
save2csv(filename = "./Data/coop_data")

jcvdav/cooperatR documentation built on May 29, 2019, 1:02 a.m.