Type: Package
Title: Providing 'stringsAsFactors=FALSE' Variants of 'data.frame()' and 'as.data.frame()'
Version: 0.0.1
Date: 2015-12-14
Author: Peter Meissner
Maintainer: Peter Meissner <retep.meissner@gmail.com>
Description: Base R's default setting for 'stringsAsFactors' within 'data.frame()' and 'as.data.frame()' is supposedly the most often complained about piece of code in the R infrastructure. The 'hellno' package provides an explicit solution without changing R itself or having to mess around with options. It tries to solve this problem by providing alternative 'data.frame()' and 'as.data.frame()' functions that are in fact simple wrappers around base R's 'data.frame()' and 'as.data.frame()' with 'stringsAsFactors' option set to 'HELLNO' ( which in turn equals FALSE ) by default.
License: MIT + file LICENSE
URL: https://github.com/petermeissner/hellno
BugReports: https://github.com/petermeissner/hellno/issues
LazyData: TRUE
Suggests: testthat
RoxygenNote: 5.0.1
NeedsCompilation: no
Packaged: 2015-12-14 17:06:22 UTC; peter
Repository: CRAN
Date/Publication: 2015-12-14 18:34:03

logical constant for FALSE

Description

logical constant for FALSE

Usage

HELLNO

Format

 logi FALSE

alternative as.data.frame() implementation

Description

hellno::as.data.frame() wraps up base::as.data.frame() so that stringAsFactors is set to HELLNO ( == FALSE ) by default

Usage

as.data.frame(x, row.names = NULL, optional = FALSE,
  stringsAsFactors = HELLNO, ...)

Arguments

x

see as.data.frame

row.names

see as.data.frame

optional

see as.data.frame

stringsAsFactors

see as.data.frame by default set to FALSE

...

see as.data.frame

See Also

as.data.frame


alternative data.frame() implementation

Description

hellno::data.frame() wraps up base::data.frame() so that stringAsFactors is set to HELLNO ( == FALSE ) by default

Usage

data.frame(..., stringsAsFactors = HELLNO)

Arguments

...

see data.frame

stringsAsFactors

see data.frame by default set to FALSE

See Also

data.frame