Skip to content

Instantly share code, notes, and snippets.

View hillarysanders's full-sized avatar

Hillary Sanders hillarysanders

View GitHub Profile
@hillarysanders
hillarysanders / bash_profile
Last active February 2, 2017 23:43
Example ~/.bash_profile file, mostly based off of: https://natelandau.com/my-mac-osx-bash_profile/
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
simulate.bad.test.for.reddit = function(j){
accuracy = c()
head_injuries = c(rep(TRUE, 12), rep(FALSE, 17))
for(i in 1:174){
guesses = sample(c(TRUE, FALSE), size=12+17, replace=TRUE)
accuracy = c(mean(guesses==head_injuries), accuracy)
}
return(max(accuracy))
}
################################################################################
################################################################################
# author: hillz
# subject: CLT simulation: bootstrap vs CLT on right tailed distributions with
# many samples - bootstrap converges to CLT answer. No reason to use
# bootstrap.
################################################################################
################################################################################
################################################################################
##########################################################################################
##########################################################################################
# PREMISE
# hills
##########################################################################################
wd <- "~/Desktop/PREMISE/"
setwd(wd)
# source("Hillary_Premise/utils/env.R")
##########################################################################################
##########################################################################################
@hillarysanders
hillarysanders / hackbright_play_with_data
Last active December 28, 2015 03:59
hackbright - play with some data
######################################################################
# hackbright stuffs
# Premise
######################################################################
# Author: Hillary Sanders
######################################################################
######################################################################
# get data here: https://data.premise.com/
@hillarysanders
hillarysanders / hackbright_example_functions
Last active December 28, 2015 03:59
hackbright example functions
######################
# outliers:
# supah simple outlier killer. Also kills right tails.
##' @param trim trim what % of the data off each tail before calcuating the mean and sd.
##' @param z how many standard deviations will you allow observations to be away from the
##' mean before you consider it an outlier?