Wordcloud for National Day Rally 2014 speech

< 1 min. readInspired by a wordcloud from Obama’s State of the Union address, let’s look at creating a wordcloud for Singapore’s National Day Rally 2014 speech using R. library(rvest) library(RCurl) ## Loading required package: bitops url <- "http://www.pmo.gov.sg/mediacentre/prime-minister-lee-hsien-loongs-national-day-rally-2014-speech-english" # scrapes the speech from the URL above curlSpeech<- getURL(url) speech <- curlSpeech %>% html() %>% html_nodes(".view-mode-full") %>% html_text() […]

Exploring Focal Length with Exiftool and R

5 min. readPicture Credits: Pixabay A good way to understand your shooting style and guide your future camera equipment buying decisions will be to discover your frequently used focal lengths. Focal Lengths can be extract from photos that have EXIF data, which in short refers to data on how these photos are taken. You can find out […]