<?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: Sentiment Analysis of Tweets &#8211; Predicting Sentiments using Machine Learning Algorithms	</title>
	<atom:link href="https://www.opencodez.com/machine-learning/sentiment-analysis-tweets-predicting-sentiments-using-machine-learning-algorithms.htm/feed" rel="self" type="application/rss+xml" />
	<link>https://www.opencodez.com/machine-learning/sentiment-analysis-tweets-predicting-sentiments-using-machine-learning-algorithms.htm</link>
	<description>develope &#124; share &#124; reuse</description>
	<lastBuildDate>Thu, 04 Jun 2020 08:32:03 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<!--Theme by MyThemeShop.com-->
	<item>
		<title>
		By: Rounak		</title>
		<link>https://www.opencodez.com/machine-learning/sentiment-analysis-tweets-predicting-sentiments-using-machine-learning-algorithms.htm/comment-page-1#comment-95492</link>

		<dc:creator><![CDATA[Rounak]]></dc:creator>
		<pubDate>Tue, 25 Feb 2020 09:45:54 +0000</pubDate>
		<guid isPermaLink="false">https://www.opencodez.com/?p=4522#comment-95492</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.opencodez.com/machine-learning/sentiment-analysis-tweets-predicting-sentiments-using-machine-learning-algorithms.htm/comment-page-1#comment-94299&quot;&gt;Naganna Chetty&lt;/a&gt;.

Hi Naganna, sure. I think you are asking how can we label the tweets as positive, negative and neutral. I have pointed that out either we can manually label them which will be very time-consuming. Alternatively, we have used a function from &#039;sentiment&#039; package which labels the tweets into positive, negative and neutral. This is not very accurate but for generating a basic understanding of text analytics we have worked on that in the blog. 

Please let us know if you need further clarification.]]></description>
			<content:encoded><![CDATA[<p>Hi Naganna, sure. I think you are asking how can we label the tweets as positive, negative and neutral. I have pointed that out either we can manually label them which will be very time-consuming. Alternatively, we have used a function from &#8216;sentiment&#8217; package which labels the tweets into positive, negative and neutral. This is not very accurate but for generating a basic understanding of text analytics we have worked on that in the blog. </p>
<p>Please let us know if you need further clarification.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Rounak		</title>
		<link>https://www.opencodez.com/machine-learning/sentiment-analysis-tweets-predicting-sentiments-using-machine-learning-algorithms.htm/comment-page-1#comment-95490</link>

		<dc:creator><![CDATA[Rounak]]></dc:creator>
		<pubDate>Tue, 25 Feb 2020 09:38:27 +0000</pubDate>
		<guid isPermaLink="false">https://www.opencodez.com/?p=4522#comment-95490</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.opencodez.com/machine-learning/sentiment-analysis-tweets-predicting-sentiments-using-machine-learning-algorithms.htm/comment-page-1#comment-95268&quot;&gt;Brian&lt;/a&gt;.

Sure, Brian. Yes. This package was archived long back in December 2012. To install sentiment package will also require packages tm and Rstem(this package is also archived). You can follow the below steps to install it.
1) require(devtools)
2) packageurl &#060;- &#034;http://www.omegahat.net/Rstem/Rstem_0.4-1.tar.gz&#034;
3) install.packages(packageurl, repos=NULL)
4) install.packages(&#034;tm&#034;)
5) packageurl &#060;- &#034;https://cran.r-project.org/src/contrib/Archive/sentiment/sentiment_0.1.tar.gz&#034;
install.packages(packageurl, repos=NULL)

Please let me know if further help is needed.]]></description>
			<content:encoded><![CDATA[<p>Sure, Brian. Yes. This package was archived long back in December 2012. To install sentiment package will also require packages tm and Rstem(this package is also archived). You can follow the below steps to install it.<br />
1) require(devtools)<br />
2) packageurl &lt;- &quot;<a href="http://www.omegahat.net/Rstem/Rstem_0.4-1.tar.gz&#038;quot" rel="nofollow ugc">http://www.omegahat.net/Rstem/Rstem_0.4-1.tar.gz&#038;quot</a>;<br />
3) install.packages(packageurl, repos=NULL)<br />
4) install.packages(&quot;tm&quot;)<br />
5) packageurl &lt;- &quot;<a href="https://cran.r-project.org/src/contrib/Archive/sentiment/sentiment_0.1.tar.gz&#038;quot" rel="nofollow ugc">https://cran.r-project.org/src/contrib/Archive/sentiment/sentiment_0.1.tar.gz&#038;quot</a>;<br />
install.packages(packageurl, repos=NULL)</p>
<p>Please let me know if further help is needed.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Brian		</title>
		<link>https://www.opencodez.com/machine-learning/sentiment-analysis-tweets-predicting-sentiments-using-machine-learning-algorithms.htm/comment-page-1#comment-95268</link>

		<dc:creator><![CDATA[Brian]]></dc:creator>
		<pubDate>Thu, 13 Feb 2020 13:19:13 +0000</pubDate>
		<guid isPermaLink="false">https://www.opencodez.com/?p=4522#comment-95268</guid>

					<description><![CDATA[Hello! Thanks for a great guide. Iam trying to run the script: Flood_text_pol = classify_polarity(Flood_text, algorithm=&quot;bayes&quot;). It keeps returung at error:Error in classify_polarity(Flood_text, algorithm = &quot;bayes&quot;, prior = 1) : 
  could not find function &quot;classify_polarity&quot;. When I install package sentiment, I get thiserror: Warning in install.packages :
  package ‘sentiment’ is not available (for R version 3.6.2)

Can you please help?]]></description>
			<content:encoded><![CDATA[<p>Hello! Thanks for a great guide. Iam trying to run the script: Flood_text_pol = classify_polarity(Flood_text, algorithm=&#8221;bayes&#8221;). It keeps returung at error:Error in classify_polarity(Flood_text, algorithm = &#8220;bayes&#8221;, prior = 1) :<br />
  could not find function &#8220;classify_polarity&#8221;. When I install package sentiment, I get thiserror: Warning in install.packages :<br />
  package ‘sentiment’ is not available (for R version 3.6.2)</p>
<p>Can you please help?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Naganna Chetty		</title>
		<link>https://www.opencodez.com/machine-learning/sentiment-analysis-tweets-predicting-sentiments-using-machine-learning-algorithms.htm/comment-page-1#comment-94299</link>

		<dc:creator><![CDATA[Naganna Chetty]]></dc:creator>
		<pubDate>Fri, 29 Nov 2019 10:43:44 +0000</pubDate>
		<guid isPermaLink="false">https://www.opencodez.com/?p=4522#comment-94299</guid>

					<description><![CDATA[Dear Rounak, can you tell me how label the tweets for training purpose?]]></description>
			<content:encoded><![CDATA[<p>Dear Rounak, can you tell me how label the tweets for training purpose?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Rounak		</title>
		<link>https://www.opencodez.com/machine-learning/sentiment-analysis-tweets-predicting-sentiments-using-machine-learning-algorithms.htm/comment-page-1#comment-94083</link>

		<dc:creator><![CDATA[Rounak]]></dc:creator>
		<pubDate>Fri, 15 Nov 2019 07:18:51 +0000</pubDate>
		<guid isPermaLink="false">https://www.opencodez.com/?p=4522#comment-94083</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.opencodez.com/machine-learning/sentiment-analysis-tweets-predicting-sentiments-using-machine-learning-algorithms.htm/comment-page-1#comment-93936&quot;&gt;DonK&lt;/a&gt;.

Hi DonK. Thanks for sharing your issue. Can you provide the command and share more info about the result? There are supposed to be 88 columns of data for each tweet when we use search_tweets command. Should not be any problem due to dev account setup.]]></description>
			<content:encoded><![CDATA[<p>Hi DonK. Thanks for sharing your issue. Can you provide the command and share more info about the result? There are supposed to be 88 columns of data for each tweet when we use search_tweets command. Should not be any problem due to dev account setup.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Object Caching 19/49 objects using disk
Page Caching using disk: enhanced 
Database Caching 1/18 queries in 0.007 seconds using disk

Served from: www.opencodez.com @ 2026-04-25 19:13:04 by W3 Total Cache
-->