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
# Install and Load Packages | |
install.packages('haven') | |
library('haven') | |
install.packages('stringr') | |
library('stringr') | |
# Record the function |
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
import sublime, sublime_plugin | |
from origami import TravelToPaneCommand | |
''' | |
# WHAT IT DOES | |
One of three things: | |
1. If only one pane is open, it creates a new pane and initializes the R REPL | |
2. If two panes are open and no R REPL process is running, it creates a new R REPL in the newest pane |
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
(* EXPORT ALL SKIM NOTES TO EVERNOTE WITH HYPERLINKS | |
-- Stephen Margheim | |
-- 9/7/13 | |
-- open source | |
REQUIRED PROGRAMS: | |
- Skim (pdf viewer and annotator) | |
- Evernote (cloud based note app) |
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(arm) | |
library(lmer) | |
library(xtable) | |
# This is only for fixed effects, so it's kind of a hacky solution. I'm working (slowly) on an alternative that includes more info. | |
mlm1<-lmer(Your Equation Here) | |
outmat<-cbind(fixed(mlm1), se.fixef(mlm1)) | |
outmat<-cbind(outmat, se <- sqrt(diag(mixed.1$vcov))) |