<?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: GGPlot Multiple Plots Made Ridiculuous Simple Using Patchwork R Package	</title>
	<atom:link href="https://www.datanovia.com/en/blog/ggplot-multiple-plots-made-ridiculuous-simple-using-patchwork-r-package/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.datanovia.com/en/blog/ggplot-multiple-plots-made-ridiculuous-simple-using-patchwork-r-package/</link>
	<description>Data Mining and Statistics for Decision Support</description>
	<lastBuildDate>Wed, 25 Dec 2019 09:07:42 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.5</generator>
	<item>
		<title>
		By: kassambara		</title>
		<link>https://www.datanovia.com/en/blog/ggplot-multiple-plots-made-ridiculuous-simple-using-patchwork-r-package/#comment-1672</link>

		<dc:creator><![CDATA[kassambara]]></dc:creator>
		<pubDate>Fri, 01 Feb 2019 13:41:22 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=8362#comment-1672</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.datanovia.com/en/blog/ggplot-multiple-plots-made-ridiculuous-simple-using-patchwork-r-package/#comment-1670&quot;&gt;Antonio Canepa&lt;/a&gt;.

It&#039;s possible to use the option &lt;strong&gt;tag&lt;/strong&gt; in the function &lt;strong&gt;labs()&lt;/strong&gt; for adding label to each plot.

For example, kindly try this:

&lt;pre class = &quot;r_code&quot;&gt;
library(ggplot2)
library(patchwork)
p1 &lt;- ggplot(mtcars) + 
  geom_point(aes(mpg, disp)) +
  labs(tag = &quot;A&quot;)
p2 &lt;- ggplot(mtcars) + 
  geom_boxplot(aes(gear, disp, group = gear)) +
  labs(tag = &quot;B&quot;)
p1 + p2
&lt;/pre&gt;
&lt;img src=&quot;https://www.datanovia.com/en/wp-content/uploads/2019/02/patchwork-add-labels.png&quot; alt=&quot;Add labels to combined plot, patchwork&quot; /&gt;
]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.datanovia.com/en/blog/ggplot-multiple-plots-made-ridiculuous-simple-using-patchwork-r-package/#comment-1670">Antonio Canepa</a>.</p>
<p>It&#8217;s possible to use the option <strong>tag</strong> in the function <strong>labs()</strong> for adding label to each plot.</p>
<p>For example, kindly try this:</p>
<pre class = "r_code">
library(ggplot2)
library(patchwork)
p1 <- ggplot(mtcars) + 
  geom_point(aes(mpg, disp)) +
  labs(tag = "A")
p2 <- ggplot(mtcars) + 
  geom_boxplot(aes(gear, disp, group = gear)) +
  labs(tag = "B")
p1 + p2
</pre>
<p><img src="https://www.datanovia.com/en/wp-content/uploads/2019/02/patchwork-add-labels.png" alt="Add labels to combined plot, patchwork" /></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Antonio Canepa		</title>
		<link>https://www.datanovia.com/en/blog/ggplot-multiple-plots-made-ridiculuous-simple-using-patchwork-r-package/#comment-1670</link>

		<dc:creator><![CDATA[Antonio Canepa]]></dc:creator>
		<pubDate>Fri, 01 Feb 2019 08:16:58 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=8362#comment-1670</guid>

					<description><![CDATA[Is there any way to label each plot (A, B, C) automatically, to create a publishable-ready figure?...]]></description>
			<content:encoded><![CDATA[<p>Is there any way to label each plot (A, B, C) automatically, to create a publishable-ready figure?&#8230;</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Object Caching 108/174 objects using Memcached
Page Caching using Disk: Enhanced 
Lazy Loading (feed)
Database Caching 40/63 queries in 0.369 seconds using APC

Served from: www.datanovia.com @ 2026-06-23 12:20:32 by W3 Total Cache
-->