This past summer when the twin cities R user group was starting to get back up and running, I offered to present on some R related things that I was working on. One thing I was working on was a part of my last post. In a response to discussing this during a meeting, I was posed with the problem of how to do this with a markdown table. I replied I was unsure how to do this directly with R, but it could likely be possible.
Here is the code used to create the blog logo. Took a bit of trial and error, especially with the official R logo.
### Creating words with connected points. capE <- data.frame(x = c(1.5,1,1,1.25,1,1,1.5), y = c(3,3,2,2,2,1,1)) capE$time <- 1:nrow(capE) letd <- data.frame(x = c(2, 1.75, 1.65, 1.75, 2, 2), y = c(2,2,1.5,1,1,2.5)) letd$time <- 1:nrow(letd) letu <- data.frame(x = c(2.2, 2.2, 2.35, 2.55, 2.55, 2.55), y = c(2,1.15,1,1.15,2,1)) letu$time <- 1:nrow(letu) letc <- data.
A recent hobby of mine (as with many other R users) is to play around with the relatively new R package: shiny. I started creating demo applications about a year ago just to figure out how powerful the platform could be, but it was not until this fall that I started creating some applications for others to use.
I encountered a problem this fall at the University of Arkansas due to the huge Java exploit going public.