write.csv_: write.csv without row.names

Description Usage Arguments Value Examples

View source: R/helper.r

Description

This function returns the object passed in, can be used for dplyr pipeline.

Usage

1

Arguments

x

object

file

filename for write.csv

Value

whatever object passed in

Examples

1
2
3
4
5
6
write.csv_(data.frame(a=1, b=2, c=3), file.path(tempdir(), "data.csv"))

data <- data.frame(a=1, b=2, c=3)
data %>%
    file.path(tempdir(), "data.csv") %>%
    print()

gen5helper documentation built on March 26, 2020, 7:17 p.m.