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
A simple procedure for sampling a di...A simple procedure for sampling a distribution to look like another. A method through binning and another by kde estimation. The binning idea came from this stats exchange question and the kde method came from other studies of mine.
1
library(tidyverse)
2
library(broom)
3
4
5
df<-
Little function I created in R for a...Little function I created in R for adding all lagged values up to n of a variable to a df. Can be improved for handling more than one variable.
A small little idea on implementing ...A small little idea on implementing bootstrap only using purrr, not dplyr based, after reading a google data science blog
Um simples script que cria 300 variá...Um simples script que cria 300 variáveis normais de 100 pares de média e variância distintas e calcula suas médias e intervalos de confiança por meio do bootstrap e ainda calcula a proporção de vezes que a verdadeira média esta no intervalo
1
library(tidyverse)
2
3
### criando 300 váriáveis normais para 20 diferentes
4
### pares de média e variância distintos
5
This decorator caches a pandas.DataF...This decorator caches a pandas.DataFrame returning function. It saves the pandas.DataFrame in a parquet file in the cache_dir.