Quantcast
Channel: R tutorial for Spatial Statistics
Browsing all 25 articles
Browse latest View live

Image may be NSFW.
Clik here to view.

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 Article


Spreadsheet 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 Article


Geocoding 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 Article

Weather 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 Article

Image may be NSFW.
Clik here to view.

Shiny 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

Browsing all 25 articles
Browse latest View live