“Introduction to Data Science” video course contest is closed

[This article was first published on R – Win-Vector Blog, 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.

Congratulations to all the winners of the Win-Vector “Introduction to Data Science” Video Course giveaway! We’ve emailed all of you your individual subscription coupons.

Even though this contest is over, we still encourage those interested to join our mailing list. Our updates to the list will be infrequent, but (we hope) informative.

For fun, we created a map of our mailing list followers (we have confirmed that the lat/long locations are only approximate estimates). It’s been heartening to see that our followers come from so many places across the globe. Below is the R code to produce the map from a a standard MailChip list export.

library("leaflet") d <- read.table('mailChimpExport.csv', header=TRUE,stringsAsFactors = FALSE,sep=',') df = d[, c("LATITUDE", "LONGITUDE")] df = df[complete.cases(df),] leaflet(df) %>% addProviderTiles("Esri.NatGeoWorldMap") %>% addMarkers()


(link)

To leave a comment for the author, please follow the link and comment on their blog: R – Win-Vector Blog.

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.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)