library(data.table) library(glue) library(arrow)
## ## Attaching package: 'arrow'
## The following object is masked from 'package:utils': ## ## timestamp
library(duckdb)
## Loading required package: DBI
library(tictoc)
## ## Attaching package: 'tictoc'
## The following object is masked from 'package:data.table': ## ## shift
library(ggplot2) library(scales) library(dplyr)
## ## Attaching package: 'dplyr'
## The following objects are masked from 'package:data.table': ## ## between, first, last
## The following objects are masked from 'package:stats': ## ## filter, lag
## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union
library(bit64)
## Loading required package: bit
## ## Attaching package: 'bit'
## The following object is masked from 'package:data.table': ## ## setattr
## The following object is masked from 'package:base': ## ## xor
## Attaching package bit64
## package:bit64 (c) 2011-2017 Jens Oehlschlaegel
## creators: integer64 runif64 seq :
## coercion: as.integer64 as.vector as.logical as.integer as.double as.character as.bitstring
## logical operator: ! & | xor != == < <= >= >
## arithmetic operator: + - * / %/% %% ^
## math: sign abs sqrt log log2 log10
## math: floor ceiling trunc round
## querying: is.integer64 is.vector [is.atomic} [length] format print str
## values: is.na is.nan is.finite is.infinite
## aggregation: any all min max range sum prod
## cumulation: diff cummin cummax cumsum cumprod
## access: length<- [ [<- [[ [[<-
## combine: c rep cbind rbind as.data.frame
## WARNING don't use as subscripts
## WARNING semantics differ from integer
## for more help type ?bit64
## ## Attaching package: 'bit64'
## The following object is masked from 'package:utils': ## ## hashtab
## The following objects are masked from 'package:base': ## ## :, %in%, is.double, match, order, rank
library(microbenchmark) uscompany <- "~/Documents/Projects/uscompanies/data/" options(scipen = 999) knitr::opts_chunk$set(echo = TRUE, warning = FALSE)Introduction It has been a while since loading Large, Messy ...
Copyright © 2023 | MH Corporate basic by MH Themes