From: Frederik Vanrenterghem Date: Thu, 12 Oct 2017 11:44:06 +0000 (+0800) Subject: Load needed broom library and suppress tidy warning. X-Git-Url: http://git.vanrenterghem.biz/R/project-wa-schools.git/commitdiff_plain/ea074082794a3152e66011699979b219bf593dd7 Load needed broom library and suppress tidy warning. --- diff --git a/WA_active_schools.R b/WA_active_schools.R index 7792496..394fa83 100644 --- a/WA_active_schools.R +++ b/WA_active_schools.R @@ -2,13 +2,15 @@ #install.packages("rgdal") library(rgdal) library(tidyverse) +library(broom) #install.packages("OpenStreetMap") library(OpenStreetMap) library(viridis) # Read the shapefile obtained from WA opendata (SLIP) shape <- readOGR(dsn = "data/", layer = "CurrentActiveSchoolsSemester12017_PublicDET_014") -shape.df <- tidy(shape) +# Suppress warning about no method existing for SpatialPointsDataframe - TODO use library sf +shape.df <- suppressWarnings(tidy(shape)) shape.df$latitude <- as.numeric(as.character(shape.df$latitude)) shape.df$longitude <- as.numeric(as.character(shape.df$longitude)) shape.df$totalschoo <- as.numeric(as.character(shape.df$totalschoo))