I hereby claim:
- I am krlmlr on github.
- I am krlmlr (https://keybase.io/krlmlr) on keybase.
- I have a public key ASBWEsk3aAEpYhxYHUb4WzW1oPyWabWULdGBQ1_ci84Hiwo
To claim this, I am signing this object:
# Connect to your database here | |
con <- DBI::dbConnect(duckdb::duckdb()) | |
# I'd be especially interested in getting a dump of this data! | |
columns <- DBI::dbGetQuery(con, "SELECT * FROM information_schema.columns WHERE LOWER(table_schema) = 'information_schema'") | |
columns | |
write.csv(columns, "columns.csv", na = "") |
library(dm) | |
# Connect to your database here | |
con <- DBI::dbConnect(duckdb::duckdb()) | |
meta <- dm:::dm_meta(con, simple = TRUE) | |
# Does this work? | |
meta %>% | |
dm_ptype() |
penguins_dt <- data.table::as.data.table(palmerpenguins::penguins[1:3,]) | |
penguins_dt | |
print_data_table <- function(x, ...) { | |
# Adapted from data.table:::as.data.frame.data.table() | |
ans <- x | |
attr(ans, "row.names") <- .set_row_names(nrow(x)) | |
attr(ans, "class") <- c("tbl", "data.frame") | |
attr(ans, "sorted") <- NULL | |
attr(ans, ".internal.selfref") <- NULL |
I hereby claim:
To claim this, I am signing this object:
`<-` <- function(lhs, rhs, envir = parent.frame()) { | |
assign(as.character(substitute(lhs)), rhs, envir) | |
lockBinding(substitute(lhs), envir) | |
invisible(rhs) | |
} |
#' --- | |
#' title: Mismatch between source and test files in tibble | |
#' output: | |
#' html_notebook: | |
#' toc: true | |
#' code_folding: hide | |
#' --- | |
# For paged output | |
options(max.print = 1000) |
library(RSQLite) | |
conn <- dbConnect(SQLite()) | |
dbExecute(conn, " | |
CREATE TABLE IF NOT EXISTS `sim` ( | |
`time` TEXT, | |
`subject` INTEGER, | |
`encounter` INTEGER, | |
`location` INTEGER, | |
`temp` REAL, |
# Add this to your .Rprofile | |
options( | |
error = quote(rlang::entrace()), | |
rlang__backtrace_on_error = "collapse" # or "branch" or "full" | |
) |
Africa/Abidjan | |
Africa/Accra | |
Afr/Addis_Abab | |
Africa/Algiers | |
Africa/Asmara | |
Africa/Asmera | |
Africa/Bamako | |
Africa/Bangui | |
Africa/Banjul | |
Africa/Bissau |
> devtools::install_github("tidyverse/dplyr") | |
Downloading GitHub repo tidyverse/dplyr@master | |
from URL https://api.github.com/repos/tidyverse/dplyr/zipball/master | |
Installing dplyr | |
Downloading GitHub repo hadley/rlang@ac7498c9 | |
from URL https://api.github.com/repos/hadley/rlang/zipball/ac7498c9 | |
Installing rlang | |
"C:/PROGRA~1/R/R-33~1.3/bin/x64/R" --no-site-file --no-environ --no-save | |
--no-restore --quiet CMD \ | |
INSTALL \ |