{"id":1176932,"date":"2021-04-07T10:30:11","date_gmt":"2021-04-07T17:30:11","guid":{"rendered":"https:\/\/www.esri.com\/arcgis-blog\/?post_type=blog&#038;p=1176932"},"modified":"2021-04-09T07:26:04","modified_gmt":"2021-04-09T14:26:04","slug":"the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary","status":"publish","type":"blog","link":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary","title":{"rendered":"The R-ArcGIS Bridge at the 2021 Esri Developer Summit Plenary"},"author":7381,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"closed","template":"","format":"standard","meta":{"_acf_changed":false,"_searchwp_excluded":""},"categories":[23341],"tags":[759152,759442,41581,30241,31611],"industry":[],"product":[36561],"class_list":["post-1176932","blog","type-blog","status-publish","format-standard","hentry","category-analytics","tag-dev-summit-2021","tag-ecoregions","tag-jupyter-notebooks","tag-r","tag-r-arcgis-bridge","product-arcgis-pro"],"acf":{"short_description":"Read about the new and enhanced capabilities of the R-ArcGIS Bridge, R integration for ArcGIS Pro, in the 2021 Esri Developer Summit Plenary.","flexible_content":[{"acf_fc_layout":"content","content":"<p><a href=\"https:\/\/www.esri.com\/en-us\/arcgis\/products\/r-arcgis-bridge\/overview\">The R-ArcGIS Bridge<\/a> is the R integration for ArcGIS Pro that opens up ways for enriching GIS workflows with rich statistical analysis packages of the R language. <code>arcgisbinding<\/code>, the R package developed by the R-ArcGIS Bridge team, has new enhancements that we are excited to share at <a href=\"https:\/\/dev2021.esri.com\/\">the 2021 Esri Developer Summit<\/a>. In addition to our <a href=\"https:\/\/dev2021.esri.com\/live-stream\/19764703\/Harnessing-the-Power-of-R-in-ArcGIS-with-R-ArcGIS-Bridge\">tech workshop on leveraging the R-ArcGIS Bridge<\/a>, we will be showcasing the new features of <code>arcgisbinding<\/code> at the plenary.<\/p>\n<p><strong>Technology Highlights<\/strong><\/p>\n<ol>\n<li>Working with R notebooks alongside ArcGIS Pro<\/li>\n<li>Creating interactive maps in R notebooks<\/li>\n<li>Calling geoprocessing tools from R<\/li>\n<\/ol>\n"},{"acf_fc_layout":"content","content":"<h3><strong>Problem Definition<\/strong><\/h3>\n<p>Ecoregions are geographic regions of ecological systems based on vegetation, climate conditions, and land cover.<\/p>\n<p>In Part 1 of this blog series, we learned about the famous Bailey\u2019s Ecoregions map.\u00a0 This map is an <em>expert-driven<\/em> interpretation of the geography of US ecoregions, which was hand-drawn by US Forest Service researchers in 1994.<\/p>\n<p>Bailey&#8217;s Ecoregions are hierarchical in their size. The largest regions are domains and they group spatial units with respect to their similarities in precipitation and temperature. Divisions are subgroups inside domains and are defined with respect to similarities in precipitation and temperature levels and patterns. Lastly, divisions are made up of provinces, which are differentiated based on vegetation and other natural land cover similarities.<\/p>\n<p>Ecoregion provinces defined by Bailey are given in the map below:<\/p>\n"},{"acf_fc_layout":"storymap","title":"","description":"<p>Bailey's ecoregion provinces for the conterminous United States<\/p>\n","static":false,"storymap_url":"<a href=\"https:\/\/arcgis.com\/apps\/Minimalist\/index.html?appid=2bf1eefc0b2e4fc7adf14355962f0197\">https:\/\/arcgis.com\/apps\/Minimalist\/index.html?appid=2bf1eefc0b2e4fc7adf14355962f0197<\/a>"},{"acf_fc_layout":"content","content":"<p>Using datasets representing climate and vegetation conditions from the same period of the 1990s, we applied a series of regionalization (clustering) algorithms in ArcGIS and R to create several <em>data-driven<\/em> interpretations of these US ecoregions.<\/p>\n<h3><strong>Working with R Notebooks Alongside ArcGIS Pro<\/strong><\/h3>\n<p>We will use R notebooks inside an ArcGIS Pro Conda environment. The Conda package <a href=\"https:\/\/anaconda.org\/esri\/r-arcgis-essentials\">r-arcgis-essentials<\/a> will be used to set up this computational environment. If you would like to learn the detailed steps of setting up an R notebook environment to run alongside ArcGIS Pro, please visit <a href=\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-notebooks-in-arcgis-pro-for-spatial-data-science\/\">this blog<\/a>.<\/p>\n<p>Once the <code>r-arcgis-essentials<\/code> package is installed, it enables R notebooks, the R-ArcGIS Bridge, and commonly used spatial R packages, such as <code>sf<\/code>, <code>sp<\/code>, and <code>raster<\/code>.<\/p>\n"},{"acf_fc_layout":"youtube","start_time":"0","end_time":"","youtube_video_url":"<iframe title=\"R Bridge Ecoregion Blog  Step0\" width=\"640\" height=\"360\" src=\"https:\/\/www.youtube.com\/embed\/0UPTCh_Xv5Q?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>"},{"acf_fc_layout":"content","content":"<p>With our Conda environment correctly configured to power an R notebook, we can bring in the Bailey&#8217;s Ecoregions as a spatial R data frame for visualization and analysis.<\/p>\n<h3><strong>Working with Cloud-Based Data Sources<\/strong><\/h3>\n<p>Feature services and image services can be directly read in as spatial R data frames using the R-ArcGIS Bridge.\u00a0 A detailed explanation about accessing remote data sources in R can be found in <a href=\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data\/\">this blog<\/a>. The Bailey&#8217;s Ecoregions feature service will be directly brought in as follows:<\/p>\n<p><code>base_ecoregion_url &lt;- 'https:\/\/services3.arcgis.com\/oZfKvdlWHN1MwS48\/arcgis\/rest\/services\/Ecoregions\/FeatureServer\/0'<br \/>\nbase_ecoregion_obj &lt;- arc.open(base_ecoregion_url)<\/code><\/p>\n<p>Using the R-ArcGIS Bridge&#8217;s conversion functions, the <code>arc<\/code> type data frame can be converted to commonly used spatial R data types such as sf or sp using <code>arc.data2sf<\/code> or <code>arc.data2sp<\/code>, respectively.<\/p>\n<p>The Bailey&#8217;s Ecoregions dataset can be easily interactively mapped using the R-ArcGIS Bridge&#8217;s integration with<a href=\"https:\/\/cran.r-project.org\/web\/packages\/leaflet.esri\/leaflet.esri.pdf\"> esri-leaflet<\/a>. The script below is used to create an interactive map of Bailey&#8217;s Ecoregions:<\/p>\n<p>1. First, data is converted to an sf object (the original arc object can also be used, however the current version of leaflet requires the WGS84 projection):<\/p>\n<p><code>base_ecoregion_arc &lt;- arc.select(base_ecoregion_obj)<br \/>\nbase_ecoregion_sf &lt;- arc.data2sf(base_ecoregion_arc)<\/code><\/p>\n<p>2. A color palette is defined for every unique province:<\/p>\n<p><code>num.clust &lt;- length(unique(base_ecoregion_sf$PROVINCE))<br \/>\ncluster.pal &lt;- colorFactor(rainbow(num.clust), domain=base_ecoregion_sf$PROVINCE)<\/code><\/p>\n<p>3. Lastly, a leaflet object is created using the <code>sf<\/code> object for Bailey&#8217;s Ecoregions and the associated color palette:<\/p>\n<p><code><\/code><code>L&lt;-leaflet(elementId='ecoregion_map') %&gt;%<br \/>\naddProviderTiles(providers$Esri) %&gt;%<br \/>\naddPolygons(data = st_transform(base_ecoregion_sf, 4326),<br \/>\nfillOpacity = 1,<br \/>\ncolor=~cluster.pal(base_ecoregion_sf$PROVINCE),<br \/>\nlabel=~sprintf(\"Ecoregion Province: %s\", base_ecoregion_sf$PROVINCE))<\/code><\/p>\n<p>Note that the <code>label<\/code> parameter defines interactive, data-driven text to be displayed, which provides information on the province that is being hovered over.<\/p>\n"},{"acf_fc_layout":"youtube","start_time":"0","end_time":"","youtube_video_url":"<iframe title=\"R Bridge Ecoregion Blog  Step1\" width=\"640\" height=\"360\" src=\"https:\/\/www.youtube.com\/embed\/Hp1izENZ7c8?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>"},{"acf_fc_layout":"content","content":"<h3><strong>Calling ArcPy Geoprocessing Tools from R<\/strong><\/h3>\n<p>One of the R packages that we imported into our R notebook was <code>reticulate<\/code>.\u00a0 <a href=\"https:\/\/cran.r-project.org\/web\/packages\/reticulate\/index.html\">Reticulate<\/a> is a commonly used package for calling Python functions from R. It is frequently used for calling low-level Python functions and returning results from the Python function as an R data type, thus allowing Python analysis to be performed from an R session.\u00a0 The new reticulate integration in the R-ArcGIS Bridge allowed us to import <code>ArcPy<\/code>, which is Esri\u2019s Python package containing hundreds of functions for spatial data science, data conversion and management, and map automation.\u00a0 Importing ArcPy allows us to call and execute geoprocessing tools directly in the R notebook, side-by-side with our R code.<\/p>\n<p>The geoprocessing tool we used to perform our first data-driven interpretation of the Bailey\u2019s Ecoregions map is ArcPy&#8217;s <a href=\"https:\/\/pro.arcgis.com\/en\/pro-app\/latest\/tool-reference\/spatial-statistics\/spatially-constrained-multivariate-clustering.htm\">Spatially Constrained Multivariate Clustering<\/a> tool. This tool defines spatially contiguous clusters (regions) based on a set of attributes, by assigning spatial units with similar attribute values to the same cluster.\u00a0 It also allows the user to force a \u201cspatial constraint\u201d on the clusters, which ensures that each cluster is spatially contiguous.<\/p>\n<p>The attributes used to create the clusters represent a time-series of different climatic and land-cover variables summarized in each spatial unit for the year 1994.\u00a0 The most impactful variables for defining ecoregions were determined through trial-and-error, and are discussed in more detail in the previous blog in this series:<\/p>\n<p>1. Maximum FAPAR<br \/>\n2. Mean FAPAR<br \/>\n3. Min FAPAR<br \/>\n4. Range FAPAR<br \/>\n5. Max LAI<br \/>\n6. Mean LAI<br \/>\n7. Minimum LAI<br \/>\n8. Range of LAI<br \/>\n9. Maximum Precipitation<br \/>\n10. Mean Precipitation<br \/>\n11. Minimum Precipitation<br \/>\n12. Range Precipitation<br \/>\n13. Maximum Temperature<br \/>\n14. Minimum Temperature<br \/>\n15. Standard Deviation of Temperature<\/p>\n<p>The following code snippet is used to call the Spatially Constrained Multivariate Clustering function from ArcPy:<\/p>\n<p><code>ARCPY$stats$SpatiallyConstrainedMultivariateClustering<\/code><\/p>\n<p>R-ArcGIS Bridge&#8217;s <code>reticulate<\/code> integration allows writing the result out to an in-memory feature and seamlessly reading it in as a spatial R data frame as follows:<\/p>\n<p><code>skater_regions &lt;- arc.select(arc.open(out.fc), fields = c('CLUSTER_ID'))<br \/>\nskater_regions.sf &lt;- arc.data2sf(skater_regions)<\/code><\/p>\n"},{"acf_fc_layout":"content","content":"<h3><strong>Performing Ecological Regionalization Using <code>vegclust<\/code><\/strong><\/h3>\n<p>Our second data-driven interpretation of the Bailey\u2019s Ecoregions map was created using the R package <code>vegclust<\/code>.\u00a0 The <a href=\"https:\/\/cran.r-project.org\/web\/packages\/vegclust\/index.html\">vegclust<\/a> package provides methods for performing clustering on ecological data, so it is appropriate for this analysis on ecoregions.<\/p>\n<p>Like the Spatially Constrained Multivariate Clustering tool, the vegclust function requires us to specify the attributes of interest.\u00a0 We define a generic (non-spatial) R data frame from the original Bailey&#8217;s Ecoregions:<\/p>\n<p><code>vars &lt;- c(\"FAPAR_MAX_ZONAL\", \"FAPAR_MEAN_ZONAL\", \"FAPAR_MIN_ZONAL\", \"FAPAR_RANGE_ZONAL\",<br \/>\n\"FAPAR_STD_ZONAL\", \"LAI_MAX_ZONAL\",   \"LAI_MEAN_ZONAL\",  \"LAI_MIN_ZONAL\",   \"LAI_RANGE_ZONAL\",<br \/>\n\"LAI_STD_ZONAL\",   \"PRECIP_MAX_ZONAL\", \"PRECIP_MEAN_ZONAL\", \"PRECIP_MIN_ZONAL\", \"PRECIP_RANGE_ZONAL\",<br \/>\n\"PRECIP_STD_ZONAL\", \"TEMP_MAX_ZONAL\",  \"TEMP_MEAN_ZONAL\", \"TEMP_MIN_ZONAL\",  \"TEMP_RANGE_ZONAL\",<br \/>\n\"TEMP_STD_ZONAL\")<\/code><\/p>\n<p><code>eco.vars &lt;- st_set_geometry(ecoregions_data.sf[vars], NULL)<\/code><\/p>\n<p>Clusters (regions) are defined using the following function, which specifies the number of clusters to create, and the clustering model.\u00a0 Given that we want each input polygon to be a member of only one cluster, we chose Hard C-Medoids (KMdd) as the clustering method:<\/p>\n<p><code>eco_groups &lt;- vegclust(x = eco.vars, mobileCenters=num.clust, method=\"KMdd\", nstart=20)<\/code><\/p>\n<p>We then use <code>arc.write<\/code> to convert our R ecoregions to a local feature class for further analysis in ArcGIS Pro:<\/p>\n<p><code>arc.write(out.fc.vegclust, ecoregions_data.sf, overwrite=TRUE)<\/code><\/p>\n<p>Lastly, both data-driven ecoregion maps created using ArcGIS and the <code>vegclust<\/code> package in R are compared against the original, expert-driven Bailey&#8217;s Ecoregions map using the new <a href=\"https:\/\/pro.arcgis.com\/en\/pro-app\/latest\/tool-reference\/spatial-statistics\/spatial-association-between-zones.htm\">Spatial Association Between Zones<\/a> tool. For details, please refer to the original blog post on defining data-driven ecoregions.<\/p>\n"},{"acf_fc_layout":"content","content":"<h3><strong>Inspired? Come Join Us at 2021 Dev Summit<\/strong><\/h3>\n<p>New enhancements to the R-ArcGIS Bridge make it possible to work with multiple programming languages, leveraging functionality from ArcGIS Pro directly, and creating interactive maps for visualizing spatial data to its full potential. If you are interested to learn more come visit the virtual booth at the 2021 Developer Summit, and check out <a href=\"https:\/\/www.esri.com\/en-us\/arcgis\/products\/r-arcgis-bridge\/overview\">our product page.<\/a><\/p>\n"},{"acf_fc_layout":"youtube","start_time":"0","end_time":"","youtube_video_url":"<iframe title=\"R-ArcGIS Bridge\" width=\"640\" height=\"360\" src=\"https:\/\/www.youtube.com\/embed\/dkstCatSwl0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>"}],"authors":[{"ID":7381,"user_firstname":"Orhun","user_lastname":"Aydin","nickname":"orhun7","user_nicename":"orhun7","display_name":"Orhun Aydin","user_email":"OAydin@esri.com","user_url":"","user_registered":"2018-03-21 18:21:16","user_description":"Orhun is a senior researcher for the Spatial Statistics team. His role at ESRI includes conducting applied and theoretical research into spatial and spatio-temporal machine learning methods, maintaining and adding functionality to the R-ArcGIS Bridge, and creation of educational resources such as learn lessons. He is also a member of the virtual ESRI Science Team where he works on spatial data science applications for solving problems pertaining to Earth systems. In addition to his role at ESRI, Orhun serves as a lecturer at University of Southern California's Spatial Sciences Institute. He holds a Masters and a PhD in Geostatistics, and a PhD minor in Geology from Stanford University's School of Earth, Energy and Environmental Sciences.","user_avatar":"<img data-del=\"avatar\" src='https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/Aydin-3-213x200.jpg' class='avatar pp-user-avatar avatar-96 photo ' height='96' width='96'\/>"},{"ID":154341,"user_firstname":"Nicholas","user_lastname":"Giner","nickname":"Nick Giner","user_nicename":"nginer","display_name":"Nicholas Giner","user_email":"NGiner@esri.com","user_url":"","user_registered":"2021-01-07 14:31:25","user_description":"Nick Giner is a Product Manager for Spatial Analysis and Data Science.  Prior to joining Esri in 2014, he completed Bachelor\u2019s and PhD degrees in Geography from Penn State University and Clark University, respectively. In his spare time, he likes to play guitar, golf, cook, cut the grass, and read\/watch shows about history.","user_avatar":"<img data-del=\"avatar\" src='https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2021\/01\/headshot-e1610030307989-213x200.jpeg' class='avatar pp-user-avatar avatar-96 photo ' height='96' width='96'\/>"}],"related_articles":"","card_image":false,"wide_image":false},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v25.9) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>The R-ArcGIS Bridge at the 2021 Esri Developer Summit Plenary<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The R-ArcGIS Bridge at the 2021 Esri Developer Summit Plenary\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary\" \/>\n<meta property=\"og:site_name\" content=\"ArcGIS Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/esrigis\/\" \/>\n<meta property=\"article:modified_time\" content=\"2021-04-09T14:26:04+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@ESRI\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary\"},\"author\":{\"name\":\"Orhun Aydin\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/1cebee6303de907069dda9760adde1a5\"},\"headline\":\"The R-ArcGIS Bridge at the 2021 Esri Developer Summit Plenary\",\"datePublished\":\"2021-04-07T17:30:11+00:00\",\"dateModified\":\"2021-04-09T14:26:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary\"},\"wordCount\":9,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\"},\"keywords\":[\"Dev Summit 2021\",\"Ecoregions\",\"Jupyter Notebooks\",\"r\",\"R-ArcGIS Bridge\"],\"articleSection\":[\"Analytics\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary\",\"name\":\"The R-ArcGIS Bridge at the 2021 Esri Developer Summit Plenary\",\"isPartOf\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#website\"},\"datePublished\":\"2021-04-07T17:30:11+00:00\",\"dateModified\":\"2021-04-09T14:26:04+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.esri.com\/arcgis-blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The R-ArcGIS Bridge at the 2021 Esri Developer Summit Plenary\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#website\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/\",\"name\":\"ArcGIS Blog\",\"description\":\"Get insider info from Esri product teams\",\"publisher\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.esri.com\/arcgis-blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\",\"name\":\"Esri\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png\",\"contentUrl\":\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png\",\"width\":400,\"height\":400,\"caption\":\"Esri\"},\"image\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/esrigis\/\",\"https:\/\/x.com\/ESRI\",\"https:\/\/www.linkedin.com\/company\/5311\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/1cebee6303de907069dda9760adde1a5\",\"name\":\"Orhun Aydin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/Aydin-3-213x200.jpg\",\"contentUrl\":\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/Aydin-3-213x200.jpg\",\"caption\":\"Orhun Aydin\"},\"description\":\"Orhun is a senior researcher for the Spatial Statistics team. His role at ESRI includes conducting applied and theoretical research into spatial and spatio-temporal machine learning methods, maintaining and adding functionality to the R-ArcGIS Bridge, and creation of educational resources such as learn lessons. He is also a member of the virtual ESRI Science Team where he works on spatial data science applications for solving problems pertaining to Earth systems. In addition to his role at ESRI, Orhun serves as a lecturer at University of Southern California's Spatial Sciences Institute. He holds a Masters and a PhD in Geostatistics, and a PhD minor in Geology from Stanford University's School of Earth, Energy and Environmental Sciences.\",\"sameAs\":[\"https:\/\/x.com\/orhun_sow\"],\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/author\/orhun7\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"The R-ArcGIS Bridge at the 2021 Esri Developer Summit Plenary","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary","og_locale":"en_US","og_type":"article","og_title":"The R-ArcGIS Bridge at the 2021 Esri Developer Summit Plenary","og_url":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary","og_site_name":"ArcGIS Blog","article_publisher":"https:\/\/www.facebook.com\/esrigis\/","article_modified_time":"2021-04-09T14:26:04+00:00","twitter_card":"summary_large_image","twitter_site":"@ESRI","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary#article","isPartOf":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary"},"author":{"name":"Orhun Aydin","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/1cebee6303de907069dda9760adde1a5"},"headline":"The R-ArcGIS Bridge at the 2021 Esri Developer Summit Plenary","datePublished":"2021-04-07T17:30:11+00:00","dateModified":"2021-04-09T14:26:04+00:00","mainEntityOfPage":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary"},"wordCount":9,"commentCount":0,"publisher":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization"},"keywords":["Dev Summit 2021","Ecoregions","Jupyter Notebooks","r","R-ArcGIS Bridge"],"articleSection":["Analytics"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary","url":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary","name":"The R-ArcGIS Bridge at the 2021 Esri Developer Summit Plenary","isPartOf":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#website"},"datePublished":"2021-04-07T17:30:11+00:00","dateModified":"2021-04-09T14:26:04+00:00","breadcrumb":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.esri.com\/arcgis-blog\/"},{"@type":"ListItem","position":2,"name":"The R-ArcGIS Bridge at the 2021 Esri Developer Summit Plenary"}]},{"@type":"WebSite","@id":"https:\/\/www.esri.com\/arcgis-blog\/#website","url":"https:\/\/www.esri.com\/arcgis-blog\/","name":"ArcGIS Blog","description":"Get insider info from Esri product teams","publisher":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.esri.com\/arcgis-blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization","name":"Esri","url":"https:\/\/www.esri.com\/arcgis-blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png","contentUrl":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png","width":400,"height":400,"caption":"Esri"},"image":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/esrigis\/","https:\/\/x.com\/ESRI","https:\/\/www.linkedin.com\/company\/5311\/"]},{"@type":"Person","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/1cebee6303de907069dda9760adde1a5","name":"Orhun Aydin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/image\/","url":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/Aydin-3-213x200.jpg","contentUrl":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/Aydin-3-213x200.jpg","caption":"Orhun Aydin"},"description":"Orhun is a senior researcher for the Spatial Statistics team. His role at ESRI includes conducting applied and theoretical research into spatial and spatio-temporal machine learning methods, maintaining and adding functionality to the R-ArcGIS Bridge, and creation of educational resources such as learn lessons. He is also a member of the virtual ESRI Science Team where he works on spatial data science applications for solving problems pertaining to Earth systems. In addition to his role at ESRI, Orhun serves as a lecturer at University of Southern California's Spatial Sciences Institute. He holds a Masters and a PhD in Geostatistics, and a PhD minor in Geology from Stanford University's School of Earth, Energy and Environmental Sciences.","sameAs":["https:\/\/x.com\/orhun_sow"],"url":"https:\/\/www.esri.com\/arcgis-blog\/author\/orhun7"}]}},"text_date":"April 7, 2021","author_name":"Multiple Authors","author_page":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/the-r-arcgis-bridge-in-2021-esri-developer-summit-plenary","custom_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2025\/08\/Newsroom-Keyart-Wide-1920-x-1080.jpg","primary_product":"ArcGIS Pro","tag_data":[{"term_id":759152,"name":"Dev Summit 2021","slug":"dev-summit-2021","term_group":0,"term_taxonomy_id":759152,"taxonomy":"post_tag","description":"","parent":0,"count":3,"filter":"raw"},{"term_id":759442,"name":"Ecoregions","slug":"ecoregions","term_group":0,"term_taxonomy_id":759442,"taxonomy":"post_tag","description":"","parent":0,"count":1,"filter":"raw"},{"term_id":41581,"name":"Jupyter Notebooks","slug":"jupyter-notebooks","term_group":0,"term_taxonomy_id":41581,"taxonomy":"post_tag","description":"","parent":0,"count":8,"filter":"raw"},{"term_id":30241,"name":"r","slug":"r","term_group":0,"term_taxonomy_id":30241,"taxonomy":"post_tag","description":"","parent":0,"count":19,"filter":"raw"},{"term_id":31611,"name":"R-ArcGIS Bridge","slug":"r-arcgis-bridge","term_group":0,"term_taxonomy_id":31611,"taxonomy":"post_tag","description":"","parent":0,"count":15,"filter":"raw"}],"category_data":[{"term_id":23341,"name":"Analytics","slug":"analytics","term_group":0,"term_taxonomy_id":23341,"taxonomy":"category","description":"","parent":0,"count":1329,"filter":"raw"}],"product_data":[{"term_id":36561,"name":"ArcGIS Pro","slug":"arcgis-pro","term_group":0,"term_taxonomy_id":36561,"taxonomy":"product","description":"","parent":0,"count":2037,"filter":"raw"}],"primary_product_link":"https:\/\/www.esri.com\/arcgis-blog\/?s=#&products=arcgis-pro","_links":{"self":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog\/1176932","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog"}],"about":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/types\/blog"}],"author":[{"embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/users\/7381"}],"replies":[{"embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/comments?post=1176932"}],"version-history":[{"count":0,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog\/1176932\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/media?parent=1176932"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/categories?post=1176932"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/tags?post=1176932"},{"taxonomy":"industry","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/industry?post=1176932"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/product?post=1176932"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}