<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to Create a Map using GGPlot2	</title>
	<atom:link href="https://www.datanovia.com/en/blog/how-to-create-a-map-using-ggplot2/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.datanovia.com/en/blog/how-to-create-a-map-using-ggplot2/</link>
	<description>Data Mining and Statistics for Decision Support</description>
	<lastBuildDate>Fri, 21 May 2021 04:05:15 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
	<item>
		<title>
		By: adela		</title>
		<link>https://www.datanovia.com/en/blog/how-to-create-a-map-using-ggplot2/#comment-22026</link>

		<dc:creator><![CDATA[adela]]></dc:creator>
		<pubDate>Fri, 21 May 2021 04:05:15 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=8356#comment-22026</guid>

					<description><![CDATA[Where to obtain the WHO package? It&#039;s not available.]]></description>
			<content:encoded><![CDATA[<p>Where to obtain the WHO package? It&#8217;s not available.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Максим		</title>
		<link>https://www.datanovia.com/en/blog/how-to-create-a-map-using-ggplot2/#comment-21094</link>

		<dc:creator><![CDATA[Максим]]></dc:creator>
		<pubDate>Tue, 29 Sep 2020 18:49:22 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=8356#comment-21094</guid>

					<description><![CDATA[In Examples - some countries are not shown in output of World life expectancy (so at my machine), something wrong with the code - look at Russia - it not displayed.]]></description>
			<content:encoded><![CDATA[<p>In Examples &#8211; some countries are not shown in output of World life expectancy (so at my machine), something wrong with the code &#8211; look at Russia &#8211; it not displayed.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: kassambara		</title>
		<link>https://www.datanovia.com/en/blog/how-to-create-a-map-using-ggplot2/#comment-10633</link>

		<dc:creator><![CDATA[kassambara]]></dc:creator>
		<pubDate>Tue, 25 Feb 2020 18:40:20 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=8356#comment-10633</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.datanovia.com/en/blog/how-to-create-a-map-using-ggplot2/#comment-10614&quot;&gt;Italo Moletto-Lobos&lt;/a&gt;.

thank you for the positive feedback!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.datanovia.com/en/blog/how-to-create-a-map-using-ggplot2/#comment-10614">Italo Moletto-Lobos</a>.</p>
<p>thank you for the positive feedback!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Italo Moletto-Lobos		</title>
		<link>https://www.datanovia.com/en/blog/how-to-create-a-map-using-ggplot2/#comment-10614</link>

		<dc:creator><![CDATA[Italo Moletto-Lobos]]></dc:creator>
		<pubDate>Tue, 25 Feb 2020 14:52:07 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=8356#comment-10614</guid>

					<description><![CDATA[HI THANK YOU VERY USEFUL BYE]]></description>
			<content:encoded><![CDATA[<p>HI THANK YOU VERY USEFUL BYE</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Javier Hernando		</title>
		<link>https://www.datanovia.com/en/blog/how-to-create-a-map-using-ggplot2/#comment-10251</link>

		<dc:creator><![CDATA[Javier Hernando]]></dc:creator>
		<pubDate>Sat, 22 Feb 2020 00:33:38 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=8356#comment-10251</guid>

					<description><![CDATA[In the geom_polygon() function and OUTSIDE the aes() function, use 
If you set fill, color, size or shape outsithe the aes() function, its value wont be related to any variable and will remain constant for all polygons you plot (polygons, dots, lines or whatever you plot.
As an example: the last plot of American Assault data, the variable fill is mapped to Assault, and therefore the filling color of polygons represent that variable value. The color variable is defined to be &quot;white&quot; and used outside aes(), here color stands for border color (map frontiers). This color parameter could be defined as other colors, or declared inside the aes() to link border color to other variable. A list of the colors that can be used in R can be found by googling a litte (R colors ggplot), as well as all information to work with personalized colors by using RGB scales and symilar stuff]]></description>
			<content:encoded><![CDATA[<p>In the geom_polygon() function and OUTSIDE the aes() function, use<br />
If you set fill, color, size or shape outsithe the aes() function, its value wont be related to any variable and will remain constant for all polygons you plot (polygons, dots, lines or whatever you plot.<br />
As an example: the last plot of American Assault data, the variable fill is mapped to Assault, and therefore the filling color of polygons represent that variable value. The color variable is defined to be &#8220;white&#8221; and used outside aes(), here color stands for border color (map frontiers). This color parameter could be defined as other colors, or declared inside the aes() to link border color to other variable. A list of the colors that can be used in R can be found by googling a litte (R colors ggplot), as well as all information to work with personalized colors by using RGB scales and symilar stuff</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Xi Chen		</title>
		<link>https://www.datanovia.com/en/blog/how-to-create-a-map-using-ggplot2/#comment-2448</link>

		<dc:creator><![CDATA[Xi Chen]]></dc:creator>
		<pubDate>Tue, 08 Oct 2019 08:15:21 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=8356#comment-2448</guid>

					<description><![CDATA[I wonder how to change the color of the countries to white instead?]]></description>
			<content:encoded><![CDATA[<p>I wonder how to change the color of the countries to white instead?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Rafa		</title>
		<link>https://www.datanovia.com/en/blog/how-to-create-a-map-using-ggplot2/#comment-1900</link>

		<dc:creator><![CDATA[Rafa]]></dc:creator>
		<pubDate>Thu, 25 Apr 2019 15:22:02 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=8356#comment-1900</guid>

					<description><![CDATA[hi! just the post I was looking for, thanks! What is the difference between geom_polygon() and geom_map() when doing a map?]]></description>
			<content:encoded><![CDATA[<p>hi! just the post I was looking for, thanks! What is the difference between geom_polygon() and geom_map() when doing a map?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Object Caching 110/185 objects using Memcached
Page Caching using Disk: Enhanced 
Lazy Loading (feed)
Database Caching 38/61 queries in 0.024 seconds using APC

Served from: www.datanovia.com @ 2025-08-01 17:25:55 by W3 Total Cache
-->