Skip to content

Instantly share code, notes, and snippets.

View mbannert's full-sized avatar

Matt Bannert mbannert

View GitHub Profile
@mbannert
mbannert / gist:14fad16cc1416fe5ef86c0d0a18ae969
Last active March 2, 2024 14:11
Vintage Triangle Reproducible Example
library(timeseriesdb) # enthält Demo dataset
library(data.table)
library(tsbox) # time series toolbox von Christoph
# for better overview
tsl <- kof_ts[[20:70]]
dt <- tsbox::ts_dts(tsl)
dt_wide <- dcast(dt, time ~ id, value.var = "value")
fwrite(dt_wide, file = "triangle.csv")
dpl_gr <- function(ds,vars){
ds %>%
group_by_(.dots = vars) %>%
summarise(n = n()) %>%
mutate(freq = n / sum(n))
}
dpl_gr(mtcars,c("am","cyl"))
library(MASS)
set.seed(123)
m <- mvrnorm(10000, mu = c(20,2.6),
Sigma = matrix(c(8,0.85,0.85,.57),
ncol = 2),
empirical = TRUE)
disp <- m[,1]
wt <- m[,2]
am <- rbinom(10000,1,.4)
computeScores <- function(dframe,
maplist,
fct = sum,
na.rm = T){
li <- lapply(maplist,function(x){
out <- dframe[,grep(x,names(dframe),value=T)]
apply(out,1,fct, na.rm = na.rm)
})
# # convenience package...
# central vs. decentralized production discussion
# not part of this.
# minimal introduction to R
# different editors and an interpreter
# How-to-R Studio
# # 4 Panes
# # the ctrl+1 ctrl+2 shortcut
# # don't store
library(openxlsx)
library(rvest)
journals <- read_html("https://www.aeaweb.org/econlit/journal_list.php")
j <- journals %>%
html_nodes(".journal") %>%
html_text()
dflist <- lapply(j,function(x){
\documentclass{article}
\begin{document}
<<regression,results='asis'>>=
library(texreg)
data(mtcars)
fit1 <- lm(mpg~wt+disp,data=mtcars)
texreg(fit1)
@mbannert
mbannert / benchmark.R
Last active December 15, 2016 09:41
jsonlite vs rjsonion - can we make jsonlite faster?
library(microbenchmark)
# json test is a character vector of length 2 containing
# both of the json elements given in sample_data.json
microbenchmark(
lite <- lapply(json_test,function(x){
jsonlite::fromJSON(x,simplifyVector = F)
}),
SONIO <- lapply(json_test,function(x){
@mbannert
mbannert / aws-install.sh
Created April 27, 2016 13:53
Shiny Server AWS EC2 install script
#!/usr/bin/env bash
# extend resources list and install R
sudo bash -c "echo 'deb http://stat.ethz.ch/CRAN/bin/linux/ubuntu trusty/' >> /etc/apt/sources.list"
sudo apt-get update
sudo apt-get install r-base
# install postgresql
sudo apt-get install postgresql