This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stata_summary <- | |
function( | |
x, | |
... | |
) { | |
# summarize | |
mod <- x | |
x <- summary(x) | |
# find outcome variable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.main-container { | |
max-width: 1000px !important; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(png) | |
shinyApp( | |
ui = fluidPage( | |
sidebarLayout( | |
sidebarPanel(width=3, | |
actionButton("newimages", "New images"), | |
h4("Double-click options"), | |
wellPanel( | |
sliderInput("dblclick_delay", "Delay", min=100, max=1000, value=400, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
triangle <- as.matrix(read.table(text = " | |
357848 1124788 1735330 2218270 2745596 3319994 3466336 3606286 3833515 3901463 | |
352118 1236139 2170033 3353322 3799067 4120063 4647867 4914039 5339085 NaN | |
290507 1292306 2218525 3000000 3985995 4132918 4628910 4909315 NaN NaN | |
310608 1418858 2195047 3757447 4029929 4381982 4588268 NaN NaN NaN | |
443160 1136350 2128333 2897821 3402672 3873311 NaN NaN NaN NaN | |
396132 1333217 2180715 2985752 3691712 NaN NaN NaN NaN NaN | |
440832 1288463 2419861 3483130 NaN NaN NaN NaN NaN NaN | |
359480 1421128 2864498 NaN NaN NaN NaN NaN NaN NaN | |
376686 1363294 NaN NaN NaN NaN NaN NaN NaN NaN |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases. | |
# Much of this was originally copied from: | |
# http://natelandau.com/my-mac-osx-bash_profile/ | |
# | |
# Sections: | |
# 1. Environment Configuration | |
# 2. Make Terminal Better (remapping defaults and adding functionality) | |
# 3. File and Folder Management |