SlideShare ist ein Scribd-Unternehmen logo
1 von 66
Who are you?
Todd Barr
Spatial Statistician/GeoData Sherpa
Outline
• Spatial Libraries
• GeoData
• Spatial Joins/Cholorpleth Map
• Heat Map
BackgRound on R
• Developed in the 90s base on a Proprietary Statistical Language called
‘S’ and S-Plus, by Statisticians for Statistical Models.
Advantages of R - Spatial
• Command Line Interface
• Customizable Graphics
• Native Spatial Data
• Easily Extensible through Libraries
• Many Tools to Munge Data, both Spatial and Tabular
• Native Modeling and Analysis in Code
• Levels the Playing Field
Disadvantages of R - Spatial
• Steepish Learning Curve (even with Rstudio)
• Difficult to Visualize Data (lack of interactive canvas in Rstudio)
• Difficult to Dynamically Select things from a map
• Single Core Processing (can be augmented with Libraries)
• Libraries with overlapping functionalities
R in “Traditional” Spatial/GIS
• Spatial
• ArcGIS
• R interface supported by ESRI Open Project “R Bridge”
• QGIS
• Imbedded a Functionality
• Use R in the Native Script Editor
• GeoDA
• Native R code, and functionality
• gvSIG
• R plugin to allow
R in “Traditional” Spatial/GIS
•Kinda Spatial
•Tableau
•Spotfire
R in “Traditional” Spatial/GIS
• Capable of GeoAnalytics
• SAS
• SPSS
0
10
20
30
40
50
60
70
80
2009 2010 2011 2012 2013 2014 2015 2016 2017
R Spatial Libraries
Libraries we’re Going to Focus On
• ggplot2 - Library for the declarative generation of graphics
• ggmap - Library for draping data over a Google, or Statman Basemap
• maps - displays data as maps, also contains Spatial Data
• mapdata - More Map data, extends maps
• rgdal - Access to the Geospatial Data Abstraction Library (GDAL). Creates
the ability to read datatypes and change projections
• maptools - library for building and manipulating spatial information
• rgeos - geometry operations
• Cairo - high quality graphic formats for export
• scales - assists in determining best place for breaks
What is Spatial Data
• Two Cataglories
• Vector
• Point / Multipoint
• Line/Multiline
• Polygon/Multipolygon
• Raster
• It’s a matrix of pixels and each pixel has numeric attributes
• Imagery
• Some generated graphics
Geospatial Data Formats
•Data within R packages – map, mapdata or oz
•Files or Endpoints with Latitude and Longitude attributes (just Points)
•Shapefiles
•Geopackage/geoJSON/GML
•Google or other cloud-based mapping api's
Warming up – A Simple Map
>library(maps)
>library(mapdata)
>map(“worldHires”, “Mexico”, xlim=c(-118.4, -
86.7),ylin=c(14.5321,32.71865), col=“purple”, fill=TRUE)
Cooling Off – Another Simple Map
>library(maps)
>library(mapdata)
>map(“worldHires”,”Canada”, xilm=c(-141,-53),ylim=c(40,85), col=“red”,
fill=TRUE)
Cooling Off – Fixed Zoom In
>library(maps)
>library(mapdata)
>map(“worldHires”,”Canada”, xlim=c(-140,-110),ylim=c(48.64),
col=“red”, fill=TRUE)
map meet ggplot2
>co <- map(“county”,”colorado”, plot=FALSE, fill=TRUE)
Map meet ggplot2
>head(co)
map and ggplot2
>library(ggplot3)
>head(fortify(co))
Maps and ggplot2
map and ggplot2
>ggplot(co,aes(long, lat)) +
>geom_polygon(aes(group=group), color=“yellow”)
maps and ggplot2
>ggplot(co,aes(long, lat)) +
>geom_polygon(aes(group=group), color=“yellow”, fill=“blue”)
ggplot and shapefiles and choropleths
>library(ggplot2)
>library(maptools)
>library(rgeos)
>library(ggmap)
>library(scales)
>library(RColorBrewer)
ggplot and shapefiles and choropleths
>setwd(“$Folder_here”)
>co.shp<-readShapeSpatial(“ACS1014_county.shp”)
>class(co.shp)
>names(co.shp)
ggplot and shapefiles and choropleths
>print(co.shp$GEOID)
>print(co.shp$NAME)
ggplot and shapefiles and choropleths
>age_40<-data.frame(NAME_CO=co.shp$NAME, id=co.shp$COUNTYFP,
prevalence=co.shp$age_40_49)
>combine<-fortify(co.shp,region=“COUNTYFP”)
>head(combine)
ggplot and shapefiles and choropleths
>merge.shp<-merge(combine, age_40, by=“id”, all.x=TRUE)
>final_join<-merge.shp[order(merge.shp$order),]
ggplot and shapefiles and choropleths
>ggplot() +
+geom_polygon(data=final_join, aes(x=long, y=lat,group=group,
fill=prevalence),color=“black”, size=0.25) +
+coord_map()
ggplot and shapefiles and choropleths
>ggplot() +
+ geom_polygon(data=final_join, aes(x=long, y=lat, group=group,
fill=prevalence), color=“black”, size=0.25) +
+ coord_map +
+ scale_fill_distiller(name=“Population”, palette=“YlGn”,
breaks=pretty_breaks(n=5)) +
+ theme_nothing(legend=TRUE) +
+ labs(title=“40-49 year olds by County)
Heat Map
>library(ggplot2)
>library(ggmap)
Heat Map
>co_fm<-read.csv(path_to_fm_xy.csv)
>head(co_fm)
Heat Map
>co_map<-get_map(location=“Colorado”, maptype=“satellite/roadmap”,
zoom=7)
Heat Map
>ggmap(co_map, extent=“device) +
+ geom_point(aes(x=long, y=lat), color=“red”, alpha=.1, size=2,
data=co_fm)
Heat Map 2.0
>ggmap(co_map, extent = "device") +
Heat Map 2.0
+ geom_density2d(data = co_fm,aes(x = long, y = lat), size = 0.3) +
Heat Map 2.0
+ stat_density2d(data =co_fm,
aes(x = lon, y = lat, fill = ..level.., alpha = ..level..), size = 0.01,
bins = 16, geom = "polygon") +
Heat Map 2.0
+ scale_fill_gradient(low = "green", high = "red") +
Heat Map 2.0
+ scale_alpha(range = c(0, 0.3), guide = FALSE)
http://rspatial.org/
https://cran.r-project.org/web/views/Spatial.html
https://www.datacamp.com/courses/working-with-geospatial-data-in-r
Resources

Weitere ähnliche Inhalte

Was ist angesagt?

Supervised Classification
Supervised ClassificationSupervised Classification
Supervised ClassificationChad Yowler
 
Spatial analysis and modeling
Spatial analysis and modelingSpatial analysis and modeling
Spatial analysis and modelingTolasa_F
 
Health GIS (Geographic Information System)
Health GIS (Geographic Information System)Health GIS (Geographic Information System)
Health GIS (Geographic Information System)Zulfiquer Ahmed Amin
 
Emerging Hot Spot Analysis
Emerging Hot Spot AnalysisEmerging Hot Spot Analysis
Emerging Hot Spot AnalysisBlue Raster
 
Introduction and Application of GIS
Introduction and Application of GISIntroduction and Application of GIS
Introduction and Application of GISSatish Taji
 
Introduction to arc gis
Introduction to arc gisIntroduction to arc gis
Introduction to arc gisMohamed Hamed
 
Intro to GIS and Remote Sensing
Intro to GIS and Remote SensingIntro to GIS and Remote Sensing
Intro to GIS and Remote SensingJohn Reiser
 
An introduction to geographic information systems (gis) m goulbourne 2007
An introduction to geographic information systems (gis)   m goulbourne 2007An introduction to geographic information systems (gis)   m goulbourne 2007
An introduction to geographic information systems (gis) m goulbourne 2007Michelle Goulbourne @ DiaMind Health
 
ppt spatial data
ppt spatial datappt spatial data
ppt spatial dataRahul Kumar
 
Map to Image Georeferencing using ERDAS software
 Map  to Image Georeferencing using ERDAS software Map  to Image Georeferencing using ERDAS software
Map to Image Georeferencing using ERDAS softwareSwetha A
 
Getting started with GIS
Getting started with GISGetting started with GIS
Getting started with GISEsri India
 

Was ist angesagt? (20)

Four data models in GIS
Four data models in GISFour data models in GIS
Four data models in GIS
 
Supervised Classification
Supervised ClassificationSupervised Classification
Supervised Classification
 
Remote sensing & gis
Remote sensing & gisRemote sensing & gis
Remote sensing & gis
 
Spatial analysis and modeling
Spatial analysis and modelingSpatial analysis and modeling
Spatial analysis and modeling
 
Gis
GisGis
Gis
 
Health GIS (Geographic Information System)
Health GIS (Geographic Information System)Health GIS (Geographic Information System)
Health GIS (Geographic Information System)
 
Emerging Hot Spot Analysis
Emerging Hot Spot AnalysisEmerging Hot Spot Analysis
Emerging Hot Spot Analysis
 
Basic Gis
Basic GisBasic Gis
Basic Gis
 
Introduction and Application of GIS
Introduction and Application of GISIntroduction and Application of GIS
Introduction and Application of GIS
 
GIS Modeling
GIS ModelingGIS Modeling
GIS Modeling
 
Introduction to arc gis
Introduction to arc gisIntroduction to arc gis
Introduction to arc gis
 
Intro to GIS and Remote Sensing
Intro to GIS and Remote SensingIntro to GIS and Remote Sensing
Intro to GIS and Remote Sensing
 
An introduction to geographic information systems (gis) m goulbourne 2007
An introduction to geographic information systems (gis)   m goulbourne 2007An introduction to geographic information systems (gis)   m goulbourne 2007
An introduction to geographic information systems (gis) m goulbourne 2007
 
Types of GIS Data
Types of GIS DataTypes of GIS Data
Types of GIS Data
 
ppt spatial data
ppt spatial datappt spatial data
ppt spatial data
 
GIS - lecture-1.ppt
GIS - lecture-1.pptGIS - lecture-1.ppt
GIS - lecture-1.ppt
 
GIS data analysis
GIS data analysisGIS data analysis
GIS data analysis
 
Map to Image Georeferencing using ERDAS software
 Map  to Image Georeferencing using ERDAS software Map  to Image Georeferencing using ERDAS software
Map to Image Georeferencing using ERDAS software
 
Getting started with GIS
Getting started with GISGetting started with GIS
Getting started with GIS
 
Geodatabases
GeodatabasesGeodatabases
Geodatabases
 

Ähnlich wie R spatial presentation

Askayworkshop
AskayworkshopAskayworkshop
Askayworkshopsconnin
 
Arc gis desktop_and_geoprocessing
Arc gis desktop_and_geoprocessingArc gis desktop_and_geoprocessing
Arc gis desktop_and_geoprocessingEsri
 
Using R to Visualize Spatial Data: R as GIS - Guy Lansley
Using R to Visualize Spatial Data: R as GIS - Guy LansleyUsing R to Visualize Spatial Data: R as GIS - Guy Lansley
Using R to Visualize Spatial Data: R as GIS - Guy LansleyGuy Lansley
 
Plugins in QGIS and its uses
Plugins in QGIS and its usesPlugins in QGIS and its uses
Plugins in QGIS and its usesMayuresh Padalkar
 
Geographic Information System for Egyptian Railway System(GIS)
Geographic Information System for Egyptian Railway System(GIS)Geographic Information System for Egyptian Railway System(GIS)
Geographic Information System for Egyptian Railway System(GIS)Ismail El Gayar
 
Gis and Ruby 101 at Ruby Conf Kenya 2017 by Kamal Ogudah
Gis and Ruby 101 at Ruby Conf Kenya 2017 by Kamal OgudahGis and Ruby 101 at Ruby Conf Kenya 2017 by Kamal Ogudah
Gis and Ruby 101 at Ruby Conf Kenya 2017 by Kamal OgudahMichael Kimathi
 
Compelling Cartography with ArcGIS
Compelling Cartography with ArcGISCompelling Cartography with ArcGIS
Compelling Cartography with ArcGISAileen Buckley
 
Drupal mapping
Drupal mappingDrupal mapping
Drupal mappingLev Tsypin
 
Thorny Path to the Large Scale Graph Processing, Алексей Зиновьев (Тамтэк)
Thorny Path to the Large Scale Graph Processing, Алексей Зиновьев (Тамтэк)Thorny Path to the Large Scale Graph Processing, Алексей Зиновьев (Тамтэк)
Thorny Path to the Large Scale Graph Processing, Алексей Зиновьев (Тамтэк)Ontico
 
Thorny path to the Large-Scale Graph Processing (Highload++, 2014)
Thorny path to the Large-Scale Graph Processing (Highload++, 2014)Thorny path to the Large-Scale Graph Processing (Highload++, 2014)
Thorny path to the Large-Scale Graph Processing (Highload++, 2014)Alexey Zinoviev
 
Maps4 finland 28.8.2012, pekka sarkola
Maps4 finland 28.8.2012, pekka sarkolaMaps4 finland 28.8.2012, pekka sarkola
Maps4 finland 28.8.2012, pekka sarkolaOlli Rinne
 
Maps4Finland 28.8.2012, Pekka Sarkola
Maps4Finland 28.8.2012, Pekka SarkolaMaps4Finland 28.8.2012, Pekka Sarkola
Maps4Finland 28.8.2012, Pekka SarkolaApps4Finland
 
2017 GIS in Education Track: Sharing Historical Maps and Atlases in Web Apps
2017 GIS in Education Track: Sharing Historical Maps and Atlases in Web Apps2017 GIS in Education Track: Sharing Historical Maps and Atlases in Web Apps
2017 GIS in Education Track: Sharing Historical Maps and Atlases in Web AppsGIS in the Rockies
 
Introduction to MapReduce & hadoop
Introduction to MapReduce & hadoopIntroduction to MapReduce & hadoop
Introduction to MapReduce & hadoopColin Su
 
GIS_Whirlwind_Tour.ppt
GIS_Whirlwind_Tour.pptGIS_Whirlwind_Tour.ppt
GIS_Whirlwind_Tour.pptFatima891926
 
GIS_Whirlwind_Tour.ppt
GIS_Whirlwind_Tour.pptGIS_Whirlwind_Tour.ppt
GIS_Whirlwind_Tour.pptsafayetmim1
 

Ähnlich wie R spatial presentation (20)

Essentials of R
Essentials of REssentials of R
Essentials of R
 
Askayworkshop
AskayworkshopAskayworkshop
Askayworkshop
 
Day 6 - PostGIS
Day 6 - PostGISDay 6 - PostGIS
Day 6 - PostGIS
 
Arc gis desktop_and_geoprocessing
Arc gis desktop_and_geoprocessingArc gis desktop_and_geoprocessing
Arc gis desktop_and_geoprocessing
 
Using R to Visualize Spatial Data: R as GIS - Guy Lansley
Using R to Visualize Spatial Data: R as GIS - Guy LansleyUsing R to Visualize Spatial Data: R as GIS - Guy Lansley
Using R to Visualize Spatial Data: R as GIS - Guy Lansley
 
Plugins in QGIS and its uses
Plugins in QGIS and its usesPlugins in QGIS and its uses
Plugins in QGIS and its uses
 
Topic basic gis session 1
Topic  basic gis session 1Topic  basic gis session 1
Topic basic gis session 1
 
Geographic Information System for Egyptian Railway System(GIS)
Geographic Information System for Egyptian Railway System(GIS)Geographic Information System for Egyptian Railway System(GIS)
Geographic Information System for Egyptian Railway System(GIS)
 
Gis and Ruby 101 at Ruby Conf Kenya 2017 by Kamal Ogudah
Gis and Ruby 101 at Ruby Conf Kenya 2017 by Kamal OgudahGis and Ruby 101 at Ruby Conf Kenya 2017 by Kamal Ogudah
Gis and Ruby 101 at Ruby Conf Kenya 2017 by Kamal Ogudah
 
Compelling Cartography with ArcGIS
Compelling Cartography with ArcGISCompelling Cartography with ArcGIS
Compelling Cartography with ArcGIS
 
Mobile LBS
Mobile LBSMobile LBS
Mobile LBS
 
Drupal mapping
Drupal mappingDrupal mapping
Drupal mapping
 
Thorny Path to the Large Scale Graph Processing, Алексей Зиновьев (Тамтэк)
Thorny Path to the Large Scale Graph Processing, Алексей Зиновьев (Тамтэк)Thorny Path to the Large Scale Graph Processing, Алексей Зиновьев (Тамтэк)
Thorny Path to the Large Scale Graph Processing, Алексей Зиновьев (Тамтэк)
 
Thorny path to the Large-Scale Graph Processing (Highload++, 2014)
Thorny path to the Large-Scale Graph Processing (Highload++, 2014)Thorny path to the Large-Scale Graph Processing (Highload++, 2014)
Thorny path to the Large-Scale Graph Processing (Highload++, 2014)
 
Maps4 finland 28.8.2012, pekka sarkola
Maps4 finland 28.8.2012, pekka sarkolaMaps4 finland 28.8.2012, pekka sarkola
Maps4 finland 28.8.2012, pekka sarkola
 
Maps4Finland 28.8.2012, Pekka Sarkola
Maps4Finland 28.8.2012, Pekka SarkolaMaps4Finland 28.8.2012, Pekka Sarkola
Maps4Finland 28.8.2012, Pekka Sarkola
 
2017 GIS in Education Track: Sharing Historical Maps and Atlases in Web Apps
2017 GIS in Education Track: Sharing Historical Maps and Atlases in Web Apps2017 GIS in Education Track: Sharing Historical Maps and Atlases in Web Apps
2017 GIS in Education Track: Sharing Historical Maps and Atlases in Web Apps
 
Introduction to MapReduce & hadoop
Introduction to MapReduce & hadoopIntroduction to MapReduce & hadoop
Introduction to MapReduce & hadoop
 
GIS_Whirlwind_Tour.ppt
GIS_Whirlwind_Tour.pptGIS_Whirlwind_Tour.ppt
GIS_Whirlwind_Tour.ppt
 
GIS_Whirlwind_Tour.ppt
GIS_Whirlwind_Tour.pptGIS_Whirlwind_Tour.ppt
GIS_Whirlwind_Tour.ppt
 

Mehr von Todd Barr

Authentic_Leadership.pptx
Authentic_Leadership.pptxAuthentic_Leadership.pptx
Authentic_Leadership.pptxTodd Barr
 
The Core of Geospatial
The Core of GeospatialThe Core of Geospatial
The Core of GeospatialTodd Barr
 
Imposterism
Imposterism  Imposterism
Imposterism Todd Barr
 
The geography of geospatial
The geography of  geospatialThe geography of  geospatial
The geography of geospatialTodd Barr
 
Tb geo dev_presentation_nov_5
Tb geo dev_presentation_nov_5Tb geo dev_presentation_nov_5
Tb geo dev_presentation_nov_5Todd Barr
 
FOSS4G 2017 Spatial Sql for Rookies
FOSS4G 2017 Spatial Sql for RookiesFOSS4G 2017 Spatial Sql for Rookies
FOSS4G 2017 Spatial Sql for RookiesTodd Barr
 
De vsummit sessions
De vsummit sessionsDe vsummit sessions
De vsummit sessionsTodd Barr
 
Geo am prezzie
Geo am prezzieGeo am prezzie
Geo am prezzieTodd Barr
 
PostGIS and Spatial SQL
PostGIS and Spatial SQLPostGIS and Spatial SQL
PostGIS and Spatial SQLTodd Barr
 
Ambient Geographic Information and biosurveilance todd barr
Ambient Geographic Information and biosurveilance todd barrAmbient Geographic Information and biosurveilance todd barr
Ambient Geographic Information and biosurveilance todd barrTodd Barr
 
GEOPLATFORM IDIQ Released Early to Contractor
GEOPLATFORM IDIQ Released Early to ContractorGEOPLATFORM IDIQ Released Early to Contractor
GEOPLATFORM IDIQ Released Early to ContractorTodd Barr
 
Jiee Geospatial Intergration Esri Uc
Jiee Geospatial Intergration Esri UcJiee Geospatial Intergration Esri Uc
Jiee Geospatial Intergration Esri UcTodd Barr
 

Mehr von Todd Barr (14)

Authentic_Leadership.pptx
Authentic_Leadership.pptxAuthentic_Leadership.pptx
Authentic_Leadership.pptx
 
The Core of Geospatial
The Core of GeospatialThe Core of Geospatial
The Core of Geospatial
 
Imposterism
Imposterism  Imposterism
Imposterism
 
The geography of geospatial
The geography of  geospatialThe geography of  geospatial
The geography of geospatial
 
Tb geo dev_presentation_nov_5
Tb geo dev_presentation_nov_5Tb geo dev_presentation_nov_5
Tb geo dev_presentation_nov_5
 
FOSS4G 2017 Spatial Sql for Rookies
FOSS4G 2017 Spatial Sql for RookiesFOSS4G 2017 Spatial Sql for Rookies
FOSS4G 2017 Spatial Sql for Rookies
 
Workshops
WorkshopsWorkshops
Workshops
 
De vsummit sessions
De vsummit sessionsDe vsummit sessions
De vsummit sessions
 
Geo am prezzie
Geo am prezzieGeo am prezzie
Geo am prezzie
 
PostGIS and Spatial SQL
PostGIS and Spatial SQLPostGIS and Spatial SQL
PostGIS and Spatial SQL
 
Staph
StaphStaph
Staph
 
Ambient Geographic Information and biosurveilance todd barr
Ambient Geographic Information and biosurveilance todd barrAmbient Geographic Information and biosurveilance todd barr
Ambient Geographic Information and biosurveilance todd barr
 
GEOPLATFORM IDIQ Released Early to Contractor
GEOPLATFORM IDIQ Released Early to ContractorGEOPLATFORM IDIQ Released Early to Contractor
GEOPLATFORM IDIQ Released Early to Contractor
 
Jiee Geospatial Intergration Esri Uc
Jiee Geospatial Intergration Esri UcJiee Geospatial Intergration Esri Uc
Jiee Geospatial Intergration Esri Uc
 

Kürzlich hochgeladen

Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...
Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...
Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...Thomas Poetter
 
Digital Marketing Plan, how digital marketing works
Digital Marketing Plan, how digital marketing worksDigital Marketing Plan, how digital marketing works
Digital Marketing Plan, how digital marketing worksdeepakthakur548787
 
Bank Loan Approval Analysis: A Comprehensive Data Analysis Project
Bank Loan Approval Analysis: A Comprehensive Data Analysis ProjectBank Loan Approval Analysis: A Comprehensive Data Analysis Project
Bank Loan Approval Analysis: A Comprehensive Data Analysis ProjectBoston Institute of Analytics
 
Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...
Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...
Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...Boston Institute of Analytics
 
Learn How Data Science Changes Our World
Learn How Data Science Changes Our WorldLearn How Data Science Changes Our World
Learn How Data Science Changes Our WorldEduminds Learning
 
Real-Time AI Streaming - AI Max Princeton
Real-Time AI  Streaming - AI Max PrincetonReal-Time AI  Streaming - AI Max Princeton
Real-Time AI Streaming - AI Max PrincetonTimothy Spann
 
Decoding Patterns: Customer Churn Prediction Data Analysis Project
Decoding Patterns: Customer Churn Prediction Data Analysis ProjectDecoding Patterns: Customer Churn Prediction Data Analysis Project
Decoding Patterns: Customer Churn Prediction Data Analysis ProjectBoston Institute of Analytics
 
Networking Case Study prepared by teacher.pptx
Networking Case Study prepared by teacher.pptxNetworking Case Study prepared by teacher.pptx
Networking Case Study prepared by teacher.pptxHimangsuNath
 
Defining Constituents, Data Vizzes and Telling a Data Story
Defining Constituents, Data Vizzes and Telling a Data StoryDefining Constituents, Data Vizzes and Telling a Data Story
Defining Constituents, Data Vizzes and Telling a Data StoryJeremy Anderson
 
Data Factory in Microsoft Fabric (MsBIP #82)
Data Factory in Microsoft Fabric (MsBIP #82)Data Factory in Microsoft Fabric (MsBIP #82)
Data Factory in Microsoft Fabric (MsBIP #82)Cathrine Wilhelmsen
 
FAIR, FAIRsharing, FAIR Cookbook and ELIXIR - Sansone SA - Boston 2024
FAIR, FAIRsharing, FAIR Cookbook and ELIXIR - Sansone SA - Boston 2024FAIR, FAIRsharing, FAIR Cookbook and ELIXIR - Sansone SA - Boston 2024
FAIR, FAIRsharing, FAIR Cookbook and ELIXIR - Sansone SA - Boston 2024Susanna-Assunta Sansone
 
Principles and Practices of Data Visualization
Principles and Practices of Data VisualizationPrinciples and Practices of Data Visualization
Principles and Practices of Data VisualizationKianJazayeri1
 
The Power of Data-Driven Storytelling_ Unveiling the Layers of Insight.pptx
The Power of Data-Driven Storytelling_ Unveiling the Layers of Insight.pptxThe Power of Data-Driven Storytelling_ Unveiling the Layers of Insight.pptx
The Power of Data-Driven Storytelling_ Unveiling the Layers of Insight.pptxTasha Penwell
 
modul pembelajaran robotic Workshop _ by Slidesgo.pptx
modul pembelajaran robotic Workshop _ by Slidesgo.pptxmodul pembelajaran robotic Workshop _ by Slidesgo.pptx
modul pembelajaran robotic Workshop _ by Slidesgo.pptxaleedritatuxx
 
What To Do For World Nature Conservation Day by Slidesgo.pptx
What To Do For World Nature Conservation Day by Slidesgo.pptxWhat To Do For World Nature Conservation Day by Slidesgo.pptx
What To Do For World Nature Conservation Day by Slidesgo.pptxSimranPal17
 
SMOTE and K-Fold Cross Validation-Presentation.pptx
SMOTE and K-Fold Cross Validation-Presentation.pptxSMOTE and K-Fold Cross Validation-Presentation.pptx
SMOTE and K-Fold Cross Validation-Presentation.pptxHaritikaChhatwal1
 
Conf42-LLM_Adding Generative AI to Real-Time Streaming Pipelines
Conf42-LLM_Adding Generative AI to Real-Time Streaming PipelinesConf42-LLM_Adding Generative AI to Real-Time Streaming Pipelines
Conf42-LLM_Adding Generative AI to Real-Time Streaming PipelinesTimothy Spann
 
Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...
Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...
Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...Boston Institute of Analytics
 
Semantic Shed - Squashing and Squeezing.pptx
Semantic Shed - Squashing and Squeezing.pptxSemantic Shed - Squashing and Squeezing.pptx
Semantic Shed - Squashing and Squeezing.pptxMike Bennett
 

Kürzlich hochgeladen (20)

Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...
Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...
Minimizing AI Hallucinations/Confabulations and the Path towards AGI with Exa...
 
Digital Marketing Plan, how digital marketing works
Digital Marketing Plan, how digital marketing worksDigital Marketing Plan, how digital marketing works
Digital Marketing Plan, how digital marketing works
 
Bank Loan Approval Analysis: A Comprehensive Data Analysis Project
Bank Loan Approval Analysis: A Comprehensive Data Analysis ProjectBank Loan Approval Analysis: A Comprehensive Data Analysis Project
Bank Loan Approval Analysis: A Comprehensive Data Analysis Project
 
Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...
Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...
Data Analysis Project : Targeting the Right Customers, Presentation on Bank M...
 
Learn How Data Science Changes Our World
Learn How Data Science Changes Our WorldLearn How Data Science Changes Our World
Learn How Data Science Changes Our World
 
Real-Time AI Streaming - AI Max Princeton
Real-Time AI  Streaming - AI Max PrincetonReal-Time AI  Streaming - AI Max Princeton
Real-Time AI Streaming - AI Max Princeton
 
Decoding Patterns: Customer Churn Prediction Data Analysis Project
Decoding Patterns: Customer Churn Prediction Data Analysis ProjectDecoding Patterns: Customer Churn Prediction Data Analysis Project
Decoding Patterns: Customer Churn Prediction Data Analysis Project
 
Networking Case Study prepared by teacher.pptx
Networking Case Study prepared by teacher.pptxNetworking Case Study prepared by teacher.pptx
Networking Case Study prepared by teacher.pptx
 
Insurance Churn Prediction Data Analysis Project
Insurance Churn Prediction Data Analysis ProjectInsurance Churn Prediction Data Analysis Project
Insurance Churn Prediction Data Analysis Project
 
Defining Constituents, Data Vizzes and Telling a Data Story
Defining Constituents, Data Vizzes and Telling a Data StoryDefining Constituents, Data Vizzes and Telling a Data Story
Defining Constituents, Data Vizzes and Telling a Data Story
 
Data Factory in Microsoft Fabric (MsBIP #82)
Data Factory in Microsoft Fabric (MsBIP #82)Data Factory in Microsoft Fabric (MsBIP #82)
Data Factory in Microsoft Fabric (MsBIP #82)
 
FAIR, FAIRsharing, FAIR Cookbook and ELIXIR - Sansone SA - Boston 2024
FAIR, FAIRsharing, FAIR Cookbook and ELIXIR - Sansone SA - Boston 2024FAIR, FAIRsharing, FAIR Cookbook and ELIXIR - Sansone SA - Boston 2024
FAIR, FAIRsharing, FAIR Cookbook and ELIXIR - Sansone SA - Boston 2024
 
Principles and Practices of Data Visualization
Principles and Practices of Data VisualizationPrinciples and Practices of Data Visualization
Principles and Practices of Data Visualization
 
The Power of Data-Driven Storytelling_ Unveiling the Layers of Insight.pptx
The Power of Data-Driven Storytelling_ Unveiling the Layers of Insight.pptxThe Power of Data-Driven Storytelling_ Unveiling the Layers of Insight.pptx
The Power of Data-Driven Storytelling_ Unveiling the Layers of Insight.pptx
 
modul pembelajaran robotic Workshop _ by Slidesgo.pptx
modul pembelajaran robotic Workshop _ by Slidesgo.pptxmodul pembelajaran robotic Workshop _ by Slidesgo.pptx
modul pembelajaran robotic Workshop _ by Slidesgo.pptx
 
What To Do For World Nature Conservation Day by Slidesgo.pptx
What To Do For World Nature Conservation Day by Slidesgo.pptxWhat To Do For World Nature Conservation Day by Slidesgo.pptx
What To Do For World Nature Conservation Day by Slidesgo.pptx
 
SMOTE and K-Fold Cross Validation-Presentation.pptx
SMOTE and K-Fold Cross Validation-Presentation.pptxSMOTE and K-Fold Cross Validation-Presentation.pptx
SMOTE and K-Fold Cross Validation-Presentation.pptx
 
Conf42-LLM_Adding Generative AI to Real-Time Streaming Pipelines
Conf42-LLM_Adding Generative AI to Real-Time Streaming PipelinesConf42-LLM_Adding Generative AI to Real-Time Streaming Pipelines
Conf42-LLM_Adding Generative AI to Real-Time Streaming Pipelines
 
Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...
Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...
Decoding the Heart: Student Presentation on Heart Attack Prediction with Data...
 
Semantic Shed - Squashing and Squeezing.pptx
Semantic Shed - Squashing and Squeezing.pptxSemantic Shed - Squashing and Squeezing.pptx
Semantic Shed - Squashing and Squeezing.pptx
 

R spatial presentation