save_data: Save data

Description Usage Arguments Examples

View source: R/data_process_tools.R

Description

save_data is for saving a data.frame or a list fast.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
save_data(
  ...,
  files = list(...),
  file_name = as.character(substitute(list(...))),
  dir_path = getwd(),
  note = FALSE,
  as_list = FALSE,
  row_names = FALSE,
  append = FALSE
)

Arguments

...

datasets

files

A dataset or a list of datasets.

file_name

The file name of data.

dir_path

A string. The dir path to save breaks_list.

note

Logical. Outputs info.Default is TRUE.

as_list

Logical. List format or data.frame format to save. Default is FALSE.

row_names

Logical,retain rownames.

append

Logical, append newdata to old.

Examples

1
save_data(UCICreditCard,"UCICreditCard", tempdir())

creditmodel documentation built on Jan. 7, 2022, 5:06 p.m.