You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vignettes/supported-functions.Rmd
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,7 @@ out <- tribble(
68
68
"`base`", "`rank`",
69
69
"`base`", "`rev`",
70
70
"`base`", "`round`",
71
+
"`base`", "`sample`",
71
72
"`base`", "`seq`",
72
73
"`base`", "`seq_len`",
73
74
"`base`", "`sin`",
@@ -187,6 +188,8 @@ out <- tribble(
187
188
"In `tidypolars`, `na.last = NA` is not supported.",
188
189
Package == "`base`" & Function == "`sort`" ~
189
190
"In `tidypolars`, `na.last` must be explicitly supplied as `TRUE` or `FALSE`.",
191
+
Package == "`base`" & Function == "`sample`" ~
192
+
"`set.seed()` is not supported. Randomness is handled by Polars and does not use R's RNG state.",
190
193
Package == "`lubridate`" & Function %in% c("`rollbackward`", "`rollback`", "`rollforward`") ~
191
194
"While time zone handling should mimick the behaviour of `lubridate` in most cases, it is possible that Polars errors if rolling back/forward leads to am ambiguous datetime. It is also possible to have some differences in hours/minutes/seconds when converting between Polars and R.",
0 commit comments