<?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 Title, Subtitle and Caption	</title>
	<atom:link href="https://www.datanovia.com/en/blog/ggplot-title-subtitle-and-caption/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.datanovia.com/en/blog/ggplot-title-subtitle-and-caption/</link>
	<description>Data Mining and Statistics for Decision Support</description>
	<lastBuildDate>Wed, 20 Jan 2021 01:25:31 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
	<item>
		<title>
		By: AleBit		</title>
		<link>https://www.datanovia.com/en/blog/ggplot-title-subtitle-and-caption/#comment-21599</link>

		<dc:creator><![CDATA[AleBit]]></dc:creator>
		<pubDate>Wed, 20 Jan 2021 01:25:31 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=8159#comment-21599</guid>

					<description><![CDATA[`plot.subtitle.title = element_text()` should be
`plot.subtitle = element_text()`]]></description>
			<content:encoded><![CDATA[<p>`plot.subtitle.title = element_text()` should be<br />
`plot.subtitle = element_text()`</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: kassambara		</title>
		<link>https://www.datanovia.com/en/blog/ggplot-title-subtitle-and-caption/#comment-11261</link>

		<dc:creator><![CDATA[kassambara]]></dc:creator>
		<pubDate>Tue, 14 Apr 2020 20:15:58 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=8159#comment-11261</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.datanovia.com/en/blog/ggplot-title-subtitle-and-caption/#comment-11258&quot;&gt;Yun Li&lt;/a&gt;.

&lt;pre class=&quot;r&quot;&gt;&lt;code&gt;# Create a basic ggplot
library(ggplot2)
p &#060;- ggplot(ToothGrowth, aes(x = factor(dose), y = len)) +
  geom_boxplot()
p&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;img src=&quot;https://i.imgur.com/aTKdRWb.png&quot; /&gt;&lt;/p&gt;
&lt;pre class=&quot;r&quot;&gt;&lt;code&gt;# Make a bold axis title
p + theme(
  axis.title = element_text(face = &#034;bold&#034;)
)&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;img src=&quot;https://i.imgur.com/VcF84AO.png&quot; /&gt;&lt;/p&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.datanovia.com/en/blog/ggplot-title-subtitle-and-caption/#comment-11258">Yun Li</a>.</p>
<pre class="r"><code># Create a basic ggplot
library(ggplot2)
p &lt;- ggplot(ToothGrowth, aes(x = factor(dose), y = len)) +
  geom_boxplot()
p</code></pre>
<p><img src="https://i.imgur.com/aTKdRWb.png" /></p>
<pre class="r"><code># Make a bold axis title
p + theme(
  axis.title = element_text(face = &quot;bold&quot;)
)</code></pre>
<p><img src="https://i.imgur.com/VcF84AO.png" /></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Yun Li		</title>
		<link>https://www.datanovia.com/en/blog/ggplot-title-subtitle-and-caption/#comment-11258</link>

		<dc:creator><![CDATA[Yun Li]]></dc:creator>
		<pubDate>Tue, 14 Apr 2020 17:42:30 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=8159#comment-11258</guid>

					<description><![CDATA[What codes should I use if I want the axis titles to be bold?]]></description>
			<content:encoded><![CDATA[<p>What codes should I use if I want the axis titles to be bold?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: kassambara		</title>
		<link>https://www.datanovia.com/en/blog/ggplot-title-subtitle-and-caption/#comment-11239</link>

		<dc:creator><![CDATA[kassambara]]></dc:creator>
		<pubDate>Thu, 09 Apr 2020 19:01:04 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=8159#comment-11239</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.datanovia.com/en/blog/ggplot-title-subtitle-and-caption/#comment-11235&quot;&gt;Im&lt;/a&gt;.

You can display multiple line subtitles by separating long text using &quot;\n&quot;:


&lt;pre class=&quot;r&quot;&gt;&lt;code&gt;library(ggplot2)
p &#060;- ggplot(ToothGrowth, aes(x = factor(dose), y = len)) +
  geom_boxplot()
p + labs(
  title = &#034;Plot With Two Subtitle&#034;,
  subtitle = &#034;Subtitle1 \nSubtitle2&#034;
)&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;img src=&quot;https://i.imgur.com/ID3gib2.png&quot; /&gt;&lt;/p&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.datanovia.com/en/blog/ggplot-title-subtitle-and-caption/#comment-11235">Im</a>.</p>
<p>You can display multiple line subtitles by separating long text using &#8220;\n&#8221;:</p>
<pre class="r"><code>library(ggplot2)
p &lt;- ggplot(ToothGrowth, aes(x = factor(dose), y = len)) +
  geom_boxplot()
p + labs(
  title = &quot;Plot With Two Subtitle&quot;,
  subtitle = &quot;Subtitle1 \nSubtitle2&quot;
)</code></pre>
<p><img src="https://i.imgur.com/ID3gib2.png" /></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Im		</title>
		<link>https://www.datanovia.com/en/blog/ggplot-title-subtitle-and-caption/#comment-11235</link>

		<dc:creator><![CDATA[Im]]></dc:creator>
		<pubDate>Thu, 09 Apr 2020 02:46:38 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=8159#comment-11235</guid>

					<description><![CDATA[How to add multiple subtitles and captions with ggplot?]]></description>
			<content:encoded><![CDATA[<p>How to add multiple subtitles and captions with ggplot?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Object Caching 105/183 objects using Memcached
Page Caching using Disk: Enhanced 
Lazy Loading (feed)
Database Caching 3/66 queries in 0.072 seconds using APC

Served from: www.datanovia.com @ 2025-08-01 19:20:19 by W3 Total Cache
-->