https://github.com/hadley/dplyr
Revision dffe17272c8283796a072d2ff1ad05fc353d8fc9 authored by Romain François on 16 October 2020, 07:52:17 UTC, committed by GitHub on 16 October 2020, 07:52:17 UTC
1 parent 7fee09c
Raw File
Tip revision: dffe17272c8283796a072d2ff1ad05fc353d8fc9 authored by Romain François on 16 October 2020, 07:52:17 UTC
Can use vctrs::vec_proxy_order() now (#5560)
Tip revision: dffe172
_pkgdown.yml
url: https://dplyr.tidyverse.org

template:
  package: tidytemplate
  params:
    docsearch:
      api_key: 1270c4079b26a138795263974bbf302d
      index_name: tidyverse

home:
  strip_header: true

  links:
  - text: Learn more
    href: http://r4ds.had.co.nz/transform.html

reference:
- title: One table verbs
  contents:
  - arrange
  - condense
  - count
  - distinct
  - filter
  - mutate
  - pull
  - relocate
  - rename
  - select
  - summarise
  - slice

- title: Two table verbs
  contents:
  - bind
  - intersect
  - left_join
  - nest_join
  - semi_join

- title: Grouping
  contents:
  - group_by
  - group_cols
  - rowwise

- title: Vector functions
  contents:
  - across
  - between
  - case_when
  - coalesce
  - cumany
  - desc
  - if_else
  - lead
  - order_by
  - "n"
  - n_distinct
  - na_if
  - near
  - nth
  - ranking
  - recode

- title: Data
  contents:
  - band_members
  - starwars
  - storms

- title: Remote tables
  contents:
  - auto_copy
  - compute
  - copy_to
  - ident
  - explain
  - tbl
  - sql

- title: Experimental
  desc: >
    Experimental functions are a testing ground for new approaches that we
    believe to be worthy of greater exposure. There is no guarantee that these
    functions will stay around in the future, so please reach out if you find
    them useful.
  contents:
  - group_map
  - group_modify
  - group_trim
  - group_split
  - with_groups

- title: Questioning
  desc: >
    We have our doubts about questioning functions. We're not certain that
    they're inadequate, or we don't have a good replacement in mind, but
    these functions are at risk of removal in the future.
  contents:
  - all_equal

- title: Superseded
  desc: >
    Superseded functions have been replaced by new approaches that we believe
    to be superior, but we don't want to force you to change until you're
    ready, so the existing functions will stay around for several years.
  contents:
  - sample_frac
  - top_n
  - scoped
  - ends_with("_at")
  - all_vars
  - vars

articles:
- title: Get started
  navbar: ~
  contents:
  - dplyr
  - grouping
  - two-table
  - base

- title: Automate
  navbar: Automation
  contents:
  - colwise
  - rowwise
  - programming

- title: Other
  contents:
  - window-functions
  - compatibility

news:
  releases:
  - text: "Version 1.0.0"
    href: https://www.tidyverse.org/blog/2020/06/dplyr-1-0-0/
  - text: "Version 0.8.4"
    href: https://www.tidyverse.org/articles/2019/10/dplyr-0-8-4/
  - text: "Version 0.8.3"
    href: https://www.tidyverse.org/articles/2019/07/dplyr-0-8-3/
  - text: "Version 0.8.2"
    href: https://www.tidyverse.org/articles/2019/06/dplyr-0-8-2/
  - text: "Version 0.8.1"
    href: https://www.tidyverse.org/articles/2019/05/dplyr-0-8-1/
  - text: "Version 0.8.0"
    href: https://www.tidyverse.org/articles/2019/02/dplyr-0-8-0/
  - text: "Version 0.7.5"
    href: https://www.tidyverse.org/articles/2018/06/dplyr-0.7.5/

navbar:
  components:
    home: ~

development:
  mode: auto

authors:
  Kirill Müller:
    href: http://krlmlr.info
back to top