read: Read a .csv file into a tibble, quietly

Description Usage Arguments Value Examples

View source: R/read.R

Description

Read a .csv file into a tibble, quietly

Usage

1
read(path)

Arguments

path

Path to a .csv file.

Value

A tibble.

Examples

1
2
3
4
5
6
7
8
9
# Setup
tmp <- tempfile()
readr::write_csv(airquality, tmp)

# Verbose
readr::read_csv(tmp)

# Quiet
read(tmp)

2DegreesInvesting/ds-targets documentation built on March 19, 2021, 9:45 a.m.