Skip to content

Instantly share code, notes, and snippets.

View jennybc's full-sized avatar

Jennifer (Jenny) Bryan jennybc

View GitHub Profile
@jennybc
jennybc / Differ.R
Last active June 10, 2020 21:13 — forked from muschellij2/Differ.R
Get the Diff of 2 file solely with R functions
#rm(list=ls())
library(git2r)
library(plyr)
library(daff)
differ = function(file1, file2){
path <- tempfile(pattern="git2r-")
dir.create(path)
repo <- init(path)

difference between difftest.txt difftest2.txt

I am John
+butI am not John
@jennybc
jennybc / shell-learning-helpers.md
Last active January 28, 2019 01:59
shell learning helpers
@jennybc
jennybc / 2015_STAT545_enrollment.csv
Created September 22, 2015 07:35
Enrollment in STAT 545A in 2015 by degree and program
Subject BSC Masters PHD Total
Statistics 1 10 0 11
Electrical & Computer Eng 0 5 2 7
Bioinformatics 0 5 1 6
Computer Science 0 5 0 5
Psychology 0 0 5 5
Zoology 0 2 3 5
Resource Mgmt/Envirn Stud 0 1 2 3
Genome Science & Technology 0 2 0 2
Geology 0 2 0 2
> install_github("hadley/dplyr")
Using github PAT from envvar GITHUB_PAT
Downloading GitHub repo hadley/dplyr@master
Installing dplyr
'/Library/Frameworks/R.framework/Resources/bin/R' --no-site-file --no-environ \
--no-save --no-restore CMD INSTALL \
'/private/var/folders/5c/rwqfdv6s30n3kvfnvxdk19cw0000gn/T/Rtmpgc6Boy/devtoolsa1f11c7c3acb/hadley-dplyr-1f636c6' \
--library='/Users/jenny/resources/R/library' --install-tests
* installing *source* package ‘dplyr’ ...
@jennybc
jennybc / 2015-08-06_nested-render-confuses-rstudio.Rmd
Last active March 22, 2021 18:50
Nested render confuses RStudio
---
output:
html_document
---
```{r setup, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
@jennybc
jennybc / 2015-05-23_read-excel-sheet.Rmd
Created May 23, 2015 20:27
2015-05-23_read-excel-sheet
---
title: "Puzzling interaction of read_excel and a Google Sheet"
author: "Jenny Bryan"
date: "23 May, 2015"
output:
html_document:
keep_md: yes
theme: cosmo
---
@jennybc
jennybc / foo.R
Created May 21, 2015 21:18
2015-05-21_print-but-not-run-R-script-in-Rmd
x <- 1:10
sum(x)
#' ---
#' output:
#' html_document:
#' keep_md: TRUE
#' ---
#+ include = FALSE
library(dplyr)
#' Responses to [my
@jennybc
jennybc / fake-stable-url.md
Created April 22, 2015 18:46
How to fake a stable URL?

Problem: I want to include a URL in an R package. But the URL itself is not truly stable. How can I fake it?

Context: I use a Gapminder spreadsheet for alot of the examples in the googlesheets package. Here's the beautiful URL for the Sheet:

https://docs.google.com/spreadsheets/d/1HT5B8SgkKqHdqHJmn5xiuaC04Ngb7dG9Tv94004vezA/

This Sheet, and it's unique key, are absolutely vulnerable to deletion, intentionally or unintentionally by me or my collaborator. Granted, we could easily recreate the Sheet but it would have a new unique key.

Google Docs AFAICT have no way to reference them, say, like a GitHub repo: