Site icon R-bloggers

Hey! I made you some Wiener processes!

[This article was first published on Isomorphismes, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Check them out.

Here are thirty homoskedastic ones:

> homo.wiener <- array(0, c(100, 30)) > for (j in 1:30) {   for (i in 2:length(homo.wiener)) {           homo.wiener[i,j] <-  homo.wiener[ i - 1, j] + rnorm(1)                      }}

> for (j in 1:30) {

       plot( homo.wiener[,j],            type = "l", col = rgb(.1,.1,.1,.6),           ylab="", xlab="", ylim=c(-25,25)             );              par(new=TRUE) } 

Here’s just the meat of that wiener, in case the for loops or window dressing were confusing.

homo.wiener[i] < -  homo.wiener[ i - 1] + rnorm(1)

I also made you some heteroskedastic wieners.

> same for-loop encasing. ∀ j make wieners; ∀j plot wieners > hetero.wiener[i] < - hetero.wiener[ i-1 ] + rnorm(1, sd=rpois(1,1) )




It wasn’t even that hard — here are some autoregressive(1) wieners as well.

> same for-loop encasing. ∀j make wieners; ∀j plot wieners > ar.wiener[i] < - ar.wiener[i-1]*.9 + rnorm(1)

Other types of wieners:

What really stands out in writing about these wieners after playing around with them, is that logically interesting wieners don’t always make for visually interesting wieners.

There are lots of games you can play with these wieners. Some of my favourites are:

Also it’s pretty hard to tell which wieners are interesting just from looking at the codes above. I guess you will just have to go mess around with some wieners yourself. Some of them will surprise you and not do anything; that’s instructive as well. 

VOICE OF GOD: WHAT’S UP. I AM THAT I AM. I DECLARE THAT THE WORD ‘WIENER’ IS OBJECTIVELY FUNNY. THAT’S ALL FOR NOW. SEE YOU WEDNESDAY THE 17TH.

To leave a comment for the author, please follow the link and comment on their blog: Isomorphismes.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.