- Paterson tank
- 10 oz (300 ml) per roll
- Developer
- Varying times; see Massive Dev Chart
- Agitate for 30 sec
- Put tank down sharply to pop bubbles
- Agitate 10 sec every 60 sec
cart2sph <- function (x, y, z, x0 = 0, y0 = 0, z0 = 0, units = "rad") { | |
# See http://mathworld.wolfram.com/SphericalCoordinates.html and https://en.wikipedia.org/wiki/Spherical_coordinate_system | |
# Use ISO convention | |
# rho = radial distance | |
# theta = polar angle (inclination); default units is radians | |
# phi = azimuthal angle; default units is radians | |
x <- x - x0 | |
y <- y - y0 | |
z <- z - z0 | |
rho <- sqrt(x^2 + y^2 + z^2) |
clearscreen | |
forever [ | |
repeat 50 [setpencolor "blue left 1 forward 3] | |
repeat 50 [setpencolor "red left 1 forward 3] | |
left 122 | |
] | |
cs setpencolor | |
forever [forward 90 left 225 forward 90 right] |
My results [Marquam + Flicker trail](https://www.strava.com/segments/6786353?filter=my_results). | |
Only use data from 2015-2016. | |
2016 is after altitude room training at [Evolution Healthcare and Fitness](http://www.evolutionhealthcareandfitness.com/altitude-room/). | |
Load data. | |
```{r, warning = FALSE, message = FALSE} | |
library(dplyr) | |
library(magrittr) | |
library(ggplot2) |
#!/bin/bash | |
# Do this after initializing the Git repo | |
mkdir background | |
mkdir data | |
mkdir data/raw | |
mkdir data/processed | |
mkdir docs | |
mkdir figures | |
mkdir lib | |
mkdir scripts |
rem Do this after initializing the Git repo | |
mkdir background | |
mkdir data | |
mkdir data\raw | |
mkdir data\processed | |
mkdir docs | |
mkdir figures | |
mkdir lib | |
mkdir lib\R | |
mkdir lib\tests |
setwd("H:/Projects") # Set project directory | |
Sys.time0 <- Sys.time() | |
sink("make.log") | |
files <- c("file1.Rmd", # File 1 | |
"file2.Rmd", # File 2 | |
"file3.Rmd") # File 3 |
/* See http://www.haghish.com/statistics/stata-blog/reproducible-research/markdoc.php */ | |
ssc install markdoc /* installing MarkDoc package */ | |
ssc install weaver /* installing Weaver package */ | |
ssc install statax /* installing Statax package */ | |
markdoc smclfile, replace install export(docx) /* exporting Microsoft Office Docx word */ | |
markdoc adofile, replace install export(sthlp)/* exporting sthlp Stata help file */ |
getSynPUF <- function (zipFile) { | |
# [CMS 2008-2010 Data Entrepreneurs' Synthetic Public Use File (DE-SynPUF)](https://www.cms.gov/Research-Statistics-Data-and-Systems/Downloadable-Public-Use-Files/SynPUFs/DE_Syn_PUF.html) | |
# | |
# Examples: | |
# | |
# > getSynPUF("DE1_0_2008_to_2010_Carrier_Claims_Sample_1A.zip") | |
# > getSynPUF("DE1_0_2008_to_2010_Carrier_Claims_Sample_1B.zip") | |
# > getSynPUF("DE1_0_2010_Beneficiary_Summary_File_Sample_1.zip") | |
# | |
require(readr) |