Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
hadley committed Jan 1, 2015
1 parent 8b77bdc commit 9964293
Show file tree
Hide file tree
Showing 89 changed files with 190 additions and 89 deletions.
2 changes: 1 addition & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by roxygen2 (4.0.2): do not edit by hand
# Generated by roxygen2 (4.1.0): do not edit by hand

S3method("[",grouped_df)
S3method("[",tbl_df)
Expand Down
3 changes: 2 additions & 1 deletion man/add_rownames.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/dataframe.R
\name{add_rownames}
\alias{add_rownames}
\title{Convert row names to an explicit variable.}
Expand Down
3 changes: 2 additions & 1 deletion man/all.equal.tbl_df.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/all-equal.r
\name{all.equal.tbl_df}
\alias{all.equal.tbl_df}
\alias{all.equal.tbl_dt}
Expand Down
3 changes: 2 additions & 1 deletion man/arrange.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/manip.r
\name{arrange}
\alias{arrange}
\alias{arrange_}
Expand Down
3 changes: 2 additions & 1 deletion man/as.tbl_cube.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/tbl-cube.r
\name{as.tbl_cube}
\alias{as.tbl_cube}
\alias{as.tbl_cube.array}
Expand Down
3 changes: 2 additions & 1 deletion man/as_data_frame.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/dataframe.R
\name{as_data_frame}
\alias{as_data_frame}
\title{Coerce a list to a data frame.}
Expand Down
3 changes: 2 additions & 1 deletion man/backend_db.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/dbi-s3.r
\name{backend_db}
\alias{backend_db}
\alias{db_analyze}
Expand Down
3 changes: 2 additions & 1 deletion man/backend_sql.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/dbi-s3.r
\name{backend_sql}
\alias{backend_sql}
\alias{sql_escape_ident}
Expand Down
3 changes: 2 additions & 1 deletion man/backend_src.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/dbi-s3.r
\name{backend_src}
\alias{backend_src}
\alias{src_desc}
Expand Down
3 changes: 2 additions & 1 deletion man/bench_compare.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/bench-compare.r
\name{bench_compare}
\alias{bench_compare}
\alias{bench_tbls}
Expand Down
3 changes: 2 additions & 1 deletion man/between.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/RcppExports.R
\name{between}
\alias{between}
\title{Do values in a numeric vector fall in specified range?}
Expand Down
18 changes: 16 additions & 2 deletions man/bind.Rd
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/RcppExports.R, R/rbind.r
\name{rbind_all}
\alias{bind}
\alias{bind_cols}
\alias{bind_rows}
\alias{combine}
\alias{rbind_all}
\alias{rbind_list}
\title{Efficiently bind multiple data frames by row and column.}
Expand All @@ -13,6 +15,8 @@ bind_rows(x, ...)

bind_cols(x, ...)

combine(x, ...)

rbind_list(...)
}
\arguments{
Expand All @@ -32,7 +36,8 @@ rbind_list(...)
\description{
This is an efficient implementation of the common pattern of
\code{do.call(rbind, dfs)} or \code{do.call{cbind, dfs}} for binding many
data frames into one.
data frames into one. \code{combine()} acts like \code{\link{c}()} or
\code{\link{unlist}()} but uses consistent dplyr coercion rules.
}
\section{Deprecated functions}{
Expand All @@ -58,5 +63,14 @@ bind_cols(data.frame(x = 1), data.frame(y = 1:2))

bind_cols(one, two)
bind_cols(list(one, two))

# combine applies the same coercion rules
f1 <- factor("a")
f2 <- factor("b")
c(f1, f2)
unlist(list(f1, f2))

combine(f1, f2)
combine(list(f1, f2))
}

3 changes: 2 additions & 1 deletion man/build_sql.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/sql-escape.r
\name{build_sql}
\alias{build_sql}
\title{Build a SQL string.}
Expand Down
3 changes: 2 additions & 1 deletion man/chain.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/chain.r
\name{chain}
\alias{\%.\%}
\alias{\%>\%}
Expand Down
3 changes: 2 additions & 1 deletion man/compute.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/compute-collect.r, R/tbl-sql.r
\name{compute}
\alias{collapse}
\alias{collect}
Expand Down
3 changes: 2 additions & 1 deletion man/copy_to.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/copy-to.r
\name{copy_to}
\alias{copy_to}
\title{Copy a local data frame to a remote src.}
Expand Down
3 changes: 2 additions & 1 deletion man/copy_to.src_sql.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/tbl-sql.r
\name{copy_to.src_sql}
\alias{copy_to.src_sql}
\title{Copy a local data frame to a sqlite src.}
Expand Down
3 changes: 2 additions & 1 deletion man/cumall.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/RcppExports.R
\name{cumall}
\alias{cumall}
\alias{cumany}
Expand Down
3 changes: 2 additions & 1 deletion man/data_frame.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/dataframe.R
\name{data_frame}
\alias{data_frame}
\alias{data_frame_}
Expand Down
3 changes: 2 additions & 1 deletion man/desc.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/desc.r
\name{desc}
\alias{desc}
\title{Descending order.}
Expand Down
3 changes: 2 additions & 1 deletion man/distinct.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/distinct.R
\name{distinct}
\alias{distinct}
\alias{distinct_}
Expand Down
3 changes: 2 additions & 1 deletion man/do.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/do.r, R/tbl-sql.r
\name{do}
\alias{do}
\alias{do_}
Expand Down
3 changes: 2 additions & 1 deletion man/dplyr-cluster.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/cluster.R
\name{dplyr-cluster}
\alias{dplyr-cluster}
\alias{get_cluster}
Expand Down
3 changes: 2 additions & 1 deletion man/dplyr-formatting.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/tbl-df.r, R/tbl-dt.r, R/tbl-sql.r, R/utils-format.r
\name{print.tbl_df}
\alias{dim_desc}
\alias{dplyr-formatting}
Expand Down
3 changes: 2 additions & 1 deletion man/dplyr.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/dplyr.r
\docType{package}
\name{dplyr}
\alias{dplyr}
Expand Down
3 changes: 2 additions & 1 deletion man/explain.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/explain.r
\name{explain}
\alias{explain}
\alias{show_query}
Expand Down
3 changes: 2 additions & 1 deletion man/failwith.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/failwith.r
\name{failwith}
\alias{failwith}
\title{Fail with specified value.}
Expand Down
3 changes: 2 additions & 1 deletion man/filter.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/manip.r
\name{filter}
\alias{filter}
\alias{filter_}
Expand Down
3 changes: 2 additions & 1 deletion man/funs.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/funs.R
\name{funs}
\alias{funs}
\alias{funs_}
Expand Down
3 changes: 2 additions & 1 deletion man/glimpse.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/glimpse.R
\name{glimpse}
\alias{glimpse}
\title{Get a glimpse of your data.}
Expand Down
3 changes: 2 additions & 1 deletion man/group_by.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/group-by.r
\name{group_by}
\alias{group_by}
\alias{group_by_}
Expand Down
3 changes: 2 additions & 1 deletion man/group_indices.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/group-indices.R
\name{group_indices}
\alias{group_indices}
\alias{group_indices_}
Expand Down
3 changes: 2 additions & 1 deletion man/group_size.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/group-size.r
\name{group_size}
\alias{group_size}
\alias{n_groups}
Expand Down
3 changes: 2 additions & 1 deletion man/grouped_df.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/grouped-df.r
\name{grouped_df}
\alias{grouped_df}
\alias{is.grouped_df}
Expand Down
3 changes: 2 additions & 1 deletion man/grouped_dt.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/grouped-dt.r
\name{grouped_dt}
\alias{grouped_dt}
\alias{is.grouped_dt}
Expand Down
3 changes: 2 additions & 1 deletion man/groups.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/group-by.r
\name{groups}
\alias{groups}
\alias{ungroup}
Expand Down
3 changes: 2 additions & 1 deletion man/id.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/id.r
\name{id}
\alias{id}
\title{Compute a unique numeric id for each unique row in a data frame.}
Expand Down
3 changes: 2 additions & 1 deletion man/join.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/join.r
\name{join}
\alias{anti_join}
\alias{full_join}
Expand Down
3 changes: 2 additions & 1 deletion man/join.tbl_df.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/tbl-df.r
\name{join.tbl_df}
\alias{anti_join.tbl_df}
\alias{full_join.tbl_df}
Expand Down
3 changes: 2 additions & 1 deletion man/join.tbl_dt.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/tbl-dt.r
\name{join.tbl_dt}
\alias{anti_join.data.table}
\alias{inner_join.data.table}
Expand Down
3 changes: 2 additions & 1 deletion man/join.tbl_sql.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/tbl-sql.r
\name{join.tbl_sql}
\alias{anti_join.tbl_sql}
\alias{inner_join.tbl_sql}
Expand Down
3 changes: 2 additions & 1 deletion man/knit_print.trunc_mat.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/utils-format.r
\name{knit_print.trunc_mat}
\alias{knit_print.trunc_mat}
\title{knit_print method for trunc mat}
Expand Down
3 changes: 2 additions & 1 deletion man/lahman.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/data-lahman.r
\name{lahman}
\alias{copy_lahman}
\alias{has_lahman}
Expand Down
3 changes: 2 additions & 1 deletion man/lead-lag.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/lead-lag.R
\name{lead-lag}
\alias{lag.default}
\alias{lead}
Expand Down
3 changes: 2 additions & 1 deletion man/location.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/location.R
\name{location}
\alias{changes}
\alias{location}
Expand Down
3 changes: 2 additions & 1 deletion man/make_tbl.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/tbl.r
\name{make_tbl}
\alias{make_tbl}
\title{Create a "tbl" object}
Expand Down
3 changes: 2 additions & 1 deletion man/mutate.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/manip.r
\name{mutate}
\alias{mutate}
\alias{mutate_}
Expand Down
3 changes: 2 additions & 1 deletion man/n.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/manip.r
\name{n}
\alias{n}
\title{The number of observations in the current group.}
Expand Down
3 changes: 2 additions & 1 deletion man/n_distinct.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/RcppExports.R
\name{n_distinct}
\alias{n_distinct}
\title{Efficiently count the number of unique values in a vector.}
Expand Down
3 changes: 2 additions & 1 deletion man/nasa.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/data-nasa.r
\docType{data}
\name{nasa}
\alias{nasa}
Expand Down
3 changes: 2 additions & 1 deletion man/nth.Rd
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
% Generated by roxygen2 (4.0.2): do not edit by hand
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/nth-value.R
\name{nth}
\alias{first}
\alias{last}
Expand Down
Loading

0 comments on commit 9964293

Please sign in to comment.