Data Visualization Website with Shiny
My second Shiny app is dedicated to data visualization. Here users can simply upload any csv or txt file and create several plots:Histograms (with option for faceting)Barchart (with error bars, and...
View ArticleSpreadsheet Data Manipulation in R
Today I decided to create a new repository on GitHub where I am sharing code to do spreadsheet data manipulation in R. The first version of the repository and R script is available here:...
View ArticleGeocoding function
This is a very simple function to perform geocoding using the Google Maps API: getGeoCode <- function(gcStr, key) { library("RJSONIO") #Load Library gcStr <- gsub('','%20',gcStr) #Encode URL...
View ArticleWeather Forecast from MET Office
This is another function I wrote to access the MET office API and obtain a 5-day ahead weather forecast:METDataDownload <- function(stationID, product, key){ library("RJSONIO") #Load Library...
View ArticleShiny App to access NOAA data
Now that the US Government shutdown is over, it is time to download NOAA weather daily summaries in bulk and store them somewhere safe so that at the next shutdown we do not need to worry. Below is the...
View Article