Last data update: 2014.03.03

Data Source

R Release (3.2.3)
CranContrib
BioConductor
All

Data Type

Packages
Functions
Images
Data set

Classification

Results 1 - 10 of 22 found.
[1] < 1 2 3 > [3]  Sort:

problems (Package: readr) : Retrieve parsing problems.

Readr functions will only throw an error if parsing fails in an unrecoverable way. However, there are lots of potential problems that you might want to know about - these are stored in the problems attribute of the output, which you can easily access with this function.
● Data Source: CranContrib
● Keywords:
● Alias: problems
● 0 images

locale (Package: readr) : Create locales

A locale object tries to capture all the defaults that can vary between countries. You set the locale in once, and the details are automatically passed on down to the columns parsers. The defaults have been chosen to match R (i.e. US English) as closely as possible.
● Data Source: CranContrib
● Keywords:
● Alias: default_locale, locale
● 0 images

parse_datetime (Package: readr) : Parse a character vector of dates or date times.

Parse a character vector of dates or date times.
● Data Source: CranContrib
● Keywords:
● Alias: col_date, col_datetime, col_time, parse_date, parse_datetime, parse_time
● 0 images

read_lines (Package: readr) : Read lines from a file or string.

Read lines from a file or string.
● Data Source: CranContrib
● Keywords:
● Alias: read_lines, read_lines_raw
● 0 images

datasource (Package: readr) : Create a source object.

Create a source object.
● Data Source: CranContrib
● Keywords: internal
● Alias: datasource
● 0 images

Tokenizers (Package: readr) : Tokenizers.

Explicitly create tokenizer objects. Usually you will not call these function, but will instead use one of the use friendly wrappers like read_csv.
● Data Source: CranContrib
● Keywords: internal
● Alias: Tokenizers, tokenizer_csv, tokenizer_delim, tokenizer_fwf, tokenizer_line, tokenizer_log, tokenizer_tsv
● 0 images

read_delim (Package: readr) : Read a delimited file into a data frame.

read_csv and read_tsv are special cases of the general read_delim. They're useful for reading the most common types of flat file data, comma separated values and tab separated values, respectively. read_csv2 uses ; for separators, instead of ,. This is common in European countries which use , as the decimal separator.
● Data Source: CranContrib
● Keywords:
● Alias: read_csv, read_csv2, read_delim, read_tsv
● 0 images

cols (Package: readr) : Create column specification

Create column specification
● Data Source: CranContrib
● Keywords:
● Alias: cols, cols_only
● 0 images

read_log (Package: readr) : Read common/combined log file.

This is a fairly standard format for log files - it uses both quotes and square brackets for quoting, and there may be literal quotes embedded in a quoted string. The dash, "-", is used for missing values.
● Data Source: CranContrib
● Keywords:
● Alias: read_log
● 0 images

collector (Package: readr) : Parse character vectors into typed columns.

Use parse_ if you have a character vector you want to parse. Use col_ in conjunction with a read_ function to parse the values as they're read in.
● Data Source: CranContrib
● Keywords:
● Alias: col_character, col_double, col_euro_double, col_factor, col_guess, col_integer, col_logical, col_number, col_numeric, col_skip, collector, parse_character, parse_double, parse_euro_double, parse_factor, parse_guess, parse_integer, parse_logical, parse_number, parse_numeric
● 0 images