forked from tidyverse/tibble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
API
83 lines (79 loc) · 2.48 KB
/
API
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# API for tibble package
## Exported functions
add_case(.data, ..., .before = NULL, .after = NULL)
add_column(.data, ..., .before = NULL, .after = NULL)
add_row(.data, ..., .before = NULL, .after = NULL)
as.tibble(x, ...)
as_data_frame(x, ...)
as_tibble(x, ...)
column_to_rownames(df, var = "rowname")
data_frame(...)
data_frame_(xs)
deframe(x)
enframe(x, name = "name", value = "value")
frame_data(...)
frame_matrix(...)
glimpse(x, width = NULL, ...)
has_name(x, name)
has_rownames(df)
is.tibble(x)
is_tibble(x)
knit_print.trunc_mat(x, options)
lst(...)
lst_(xs)
new_tibble(x, ..., subclass = NULL)
remove_rownames(df)
repair_names(x, prefix = "V", sep)
rowid_to_column(df, var = "rowid")
rownames_to_column(df, var = "rowname")
set_tidy_names(x, syntactic = FALSE, quiet = FALSE)
tbl_sum(x)
tibble(...)
tibble_(xs)
tidy_names(name, syntactic = FALSE, quiet = FALSE)
tribble(...)
trunc_mat(x, n = NULL, width = NULL, n_extra = NULL)
## S3 methods
$.tbl_df(x, i)
[.tbl_df(x, i, j, drop = FALSE)
[[.tbl_df(x, i, j, ..., exact = TRUE)
as.data.frame.tbl_df(x, row.names = NULL, optional = FALSE, ...)
as_data_frame.NULL(x, ...)
as_data_frame.data.frame(x, validate = TRUE, ..., rownames = NA)
as_data_frame.default(x, ...)
as_data_frame.list(x, validate = TRUE, ...)
as_data_frame.matrix(x, ..., rownames = NULL)
as_data_frame.table(x, n = "n", ...)
as_data_frame.tbl_df(x, ..., validate = FALSE, rownames = NULL)
as_tibble.NULL(x, ...)
as_tibble.data.frame(x, validate = TRUE, ..., rownames = NA)
as_tibble.default(x, ...)
as_tibble.list(x, validate = TRUE, ...)
as_tibble.matrix(x, ..., rownames = NULL)
as_tibble.poly(x, ...)
as_tibble.table(x, n = "n", ...)
as_tibble.tbl_df(x, ..., validate = FALSE, rownames = NULL)
as_tibble.ts(x, ...)
check_names_before_after.character(j, names)
check_names_before_after.default(j, ...)
check_names_df.character(j, x)
check_names_df.default(j, ...)
check_names_df.logical(j, x)
check_names_df.numeric(j, x)
format.tbl(x, ..., n = NULL, width = NULL, n_extra = NULL)
format.tbl_df(x, ..., n = NULL, width = NULL, n_extra = NULL)
format.trunc_mat(x, width = NULL, ...)
format_v.character(x)
format_v.default(x)
format_v.list(x)
glimpse.data.frame(x, width = NULL, ...)
glimpse.default(x, width = NULL, max.level = 3, ...)
glimpse.tbl(x, width = NULL, ...)
print.tbl(x, ..., n = NULL, width = NULL, n_extra = NULL)
print.tbl_df(x, ..., n = NULL, width = NULL, n_extra = NULL)
print.trunc_mat(x, ...)
quote_n.character(x)
quote_n.default(x)
row.names<-.tbl_df(x, value)
tbl_sum.default(x)
tbl_sum.tbl(x)