Publications by Isomorphismes

Two interesting ideas here: “trading time” price impact of a…

29.10.2013

Two interesting ideas here: “trading time” price impact of a trade proportional to exp( √size ) Code follows: require(quantmod) getSymbols("MER") #Merrill Lynch #Gatheral's model HiLo <- function(symbol) log( Hi(symbol) / Lo(symbol) ) **2 UpDay <- function(symbol) Cl(symbol) > Op(symbol) #munging mer <- mer...

672 sym R (779 sym/1 pcs) 10 img

a public list of R freelancers

04.12.2013

tl,dr: If you want to be contacted for freelance R work, edit this list https://github.com/isomorphisms/hire-an-r-programmer/blob/master/README.md. Background/Problem: I was looking for a list of R-programming freelancers and realised there is no such list. Other than famous people and people I already talk to, I don’t know even a small fract...

2395 sym R (2 sym/2 pcs)

How do I open R help about a symbol, special character, or punctuation mark like ( parenthesis or [ bracket?

08.04.2014

A question I’ve googled before without success. Hopefully this answer will show up for someone who needs it. I’ll also go over the better-known uses of ? just in case. To get help in R about a function like subset you type ?subset . That’s like man subset from the command line. If you only know roughly what you’re looking for use double...

1450 sym

How do I open R help about a symbol or punctuation mark like ( parenthesis or [ bracket?

08.04.2014

A question I’ve googled before without success. Hopefully this answer will show up for someone who needs it. I’ll also go over the better-known uses of ? just in case. To get help in R about a function like subset you type ?subset . That’s like man subset from the command line. If you only know roughly what you’re looking for use double...

1348 sym

Size of each object in R’s workspace

22.07.2014

I’ve googled How do I find out how big my workspace is too many times … here’s the explicit code to run and hopefully the next googler sees this post: for (thing in ls()) { message(thing); print(object.size(get(thing)), units='auto') } Fin. You can stop there. Or for a bit of context… Here’s an example code to generate objects of varia...

1825 sym R (1082 sym/4 pcs) 6 img

> plot( polyroot(choose(131,14:29)) ,pch=19,col=’red’) >…

23.07.2014

29 39 59 79 99 119 “139” > plot( polyroot(choose(131,14:29)) ,pch=19,col='red') > plot( polyroot(choose(131,14:39)) ,pch=19,col='red') > plot( polyroot(choose(131,14:59)) ,pch=19,col='red') > plot( polyroot(choose(131,14:79)) ,pch=19,col='red') > plot( polyroot(choose(131,14:99)) ,pch=19,col='red') > plot( polyroot(choose(131,14:119)) ...

428 sym R (387 sym/1 pcs) 14 img

Measuring Fat Loss without the scale

30.07.2014

@tdhopper posted his self-measurements of weight loss a few months back. I recently decided also that I wanted to lose fat-weight—the infamous “I could stand to be a few kilos lighter”—and I think I came up with a more productive way of thinking about my progress: I’m not going to look at the scale at all. I’m just going to count cal...

5046 sym R (2 sym/2 pcs) 12 img

√(x²−1)(x²−k²).      x,k∈ℂ (actually just going over the unit…

15.09.2014

√(x²−1)(x²−k²), k∈ℂ x² √(x²−1)(x²−k²).      x,k∈ℂ (actually just going over the unit circle, not all of ℂ) edit: hey, are these showing up as moving gif’s for you? code: require(animation) source(wegert.R) #where I define "plat" and "Z", standard for all Wegert plots i = complex(imaginary=1) ...

603 sym R (378 sym/1 pcs) 6 img

List of R programmers

26.09.2014

List of R programmers: Hello R people. In December of 2013 I posted a cheap-o wiki-editable (thank you github) contact list which recruiters can use to find you, if they’re looking for R programmers. In what I consider a resounding success, within a few weeks it got onto the first page of google (thank you github), and within a month or two it...

1260 sym

Treasury yield curve from the Volcker era through Greenspan,…

05.11.2014

2006–2014 using FRBData 2006–2014 using FRBData package Treasury yield curve from the Volcker era through Greenspan, Bernanke, and Yellen. require(YieldCurve) data(FedYieldCurve) maturities <- c(3/12,6/12,1,2,3,5,7,10) howmany=NROW(FedYieldCurve) require(animation) saveGIF({ for (i in 1:howmany) { plot(maturities, FedYieldCurve...

745 sym R (528 sym/1 pcs) 8 img