<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for 4D Pie Charts</title>
	<atom:link href="http://4dpiecharts.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://4dpiecharts.com</link>
	<description>Scientific computing, data viz and general geekery, with examples in R and MATLAB.</description>
	<lastBuildDate>Wed, 22 Feb 2012 04:01:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on GUI building in R: gWidgets vs Deducer by Paul</title>
		<link>http://4dpiecharts.com/2012/02/20/gui-building-in-r-gwidgets-vs-deducer/#comment-524</link>
		<dc:creator><![CDATA[Paul]]></dc:creator>
		<pubDate>Wed, 22 Feb 2012 04:01:16 +0000</pubDate>
		<guid isPermaLink="false">http://4dpiecharts.com/?p=458#comment-524</guid>
		<description><![CDATA[Tried to create an instant GUI using the following structure from your original post of a few months ago.  What is the variableType question asking for?  thanks, Paul

&gt; RTT.widget &lt;- ggenericwidget(wizard_read_data)
Select a GUI toolkit 

1: gWidgetsRGtk2
2: gWidgetstcltk

Selection: 1
Loading required package: gWidgetsRGtk2
Need to implement variableType]]></description>
		<content:encoded><![CDATA[<p>Tried to create an instant GUI using the following structure from your original post of a few months ago.  What is the variableType question asking for?  thanks, Paul</p>
<p>&gt; RTT.widget &lt;- ggenericwidget(wizard_read_data)<br />
Select a GUI toolkit </p>
<p>1: gWidgetsRGtk2<br />
2: gWidgetstcltk</p>
<p>Selection: 1<br />
Loading required package: gWidgetsRGtk2<br />
Need to implement variableType</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GUI building in R: gWidgets vs Deducer by richierocks</title>
		<link>http://4dpiecharts.com/2012/02/20/gui-building-in-r-gwidgets-vs-deducer/#comment-522</link>
		<dc:creator><![CDATA[richierocks]]></dc:creator>
		<pubDate>Tue, 21 Feb 2012 11:13:23 +0000</pubDate>
		<guid isPermaLink="false">http://4dpiecharts.com/?p=458#comment-522</guid>
		<description><![CDATA[Well spotted, thanks.  Glad you enjoyed the post.]]></description>
		<content:encoded><![CDATA[<p>Well spotted, thanks.  Glad you enjoyed the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GUI building in R: gWidgets vs Deducer by Robin</title>
		<link>http://4dpiecharts.com/2012/02/20/gui-building-in-r-gwidgets-vs-deducer/#comment-521</link>
		<dc:creator><![CDATA[Robin]]></dc:creator>
		<pubDate>Tue, 21 Feb 2012 11:08:32 +0000</pubDate>
		<guid isPermaLink="false">http://4dpiecharts.com/?p=458#comment-521</guid>
		<description><![CDATA[Same problem with Deducer anyway, here :
 addComponent(win, btn_calc, 501, 1000, 601, 1, rightType = &quot;REL&quot;)

should be

 addComponent(win, btnCalc, 501, 1000, 601, 1, rightType = &quot;REL&quot;)

HTH :)]]></description>
		<content:encoded><![CDATA[<p>Same problem with Deducer anyway, here :<br />
 addComponent(win, btn_calc, 501, 1000, 601, 1, rightType = &#8220;REL&#8221;)</p>
<p>should be</p>
<p> addComponent(win, btnCalc, 501, 1000, 601, 1, rightType = &#8220;REL&#8221;)</p>
<p>HTH <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GUI building in R: gWidgets vs Deducer by Robin</title>
		<link>http://4dpiecharts.com/2012/02/20/gui-building-in-r-gwidgets-vs-deducer/#comment-520</link>
		<dc:creator><![CDATA[Robin]]></dc:creator>
		<pubDate>Tue, 21 Feb 2012 11:04:28 +0000</pubDate>
		<guid isPermaLink="false">http://4dpiecharts.com/?p=458#comment-520</guid>
		<description><![CDATA[Just a small bug, probably due to your change from under_casing to camelCase :
in the end of the gWidgets code, it should be :
frmResults &lt;- gframe(&quot;results&quot;, container = win)
lblP &lt;- glabel(labelP, container = frmResults)
txtP &lt;- gedit(container = frmResults)

instead of the current :
frmResults &lt;- gframe(&quot;results&quot;, container = win)
lblP &lt;- glabel(labelP, container = frm_results)
txtP &lt;- gedit(container = frm_results)

Thanks for your post anyway, never had the courage to find for those GUI tools, you just made me discover 2 of those :)]]></description>
		<content:encoded><![CDATA[<p>Just a small bug, probably due to your change from under_casing to camelCase :<br />
in the end of the gWidgets code, it should be :<br />
frmResults &lt;- gframe(&quot;results&quot;, container = win)<br />
lblP &lt;- glabel(labelP, container = frmResults)<br />
txtP &lt;- gedit(container = frmResults)</p>
<p>instead of the current :<br />
frmResults &lt;- gframe(&quot;results&quot;, container = win)<br />
lblP &lt;- glabel(labelP, container = frm_results)<br />
txtP &lt;- gedit(container = frm_results)</p>
<p>Thanks for your post anyway, never had the courage to find for those GUI tools, you just made me discover 2 of those <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating GUIs in R with gWidgets by GUI building in R: gWidgets vs Deducer &#171; 4D Pie Charts</title>
		<link>http://4dpiecharts.com/2010/10/06/creating-guis-in-r-with-gwidgets/#comment-515</link>
		<dc:creator><![CDATA[GUI building in R: gWidgets vs Deducer &#171; 4D Pie Charts]]></dc:creator>
		<pubDate>Mon, 20 Feb 2012 22:47:53 +0000</pubDate>
		<guid isPermaLink="false">http://4dpiecharts.com/?p=142#comment-515</guid>
		<description><![CDATA[[...] (and fan) of gWidgets for a couple of years now for GUI building in R. (See my introduction to it here.) However, it&#8217;s always good to check out the competition so I&#8217;ve been playing around [...]]]></description>
		<content:encoded><![CDATA[<p>[...] (and fan) of gWidgets for a couple of years now for GUI building in R. (See my introduction to it here.) However, it&#8217;s always good to check out the competition so I&#8217;ve been playing around [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exploring the functions in a package by richierocks</title>
		<link>http://4dpiecharts.com/2012/01/26/exploring-the-functions-in-a-package/#comment-498</link>
		<dc:creator><![CDATA[richierocks]]></dc:creator>
		<pubDate>Fri, 27 Jan 2012 11:27:46 +0000</pubDate>
		<guid isPermaLink="false">http://4dpiecharts.com/?p=444#comment-498</guid>
		<description><![CDATA[Yes.  unknownR is very useful, though maybe for a different use case.  That&#039;s more about learning R, whereas as lsp is about &quot;I&#039;m sure utils had a function for getting 8 character DOS names, but I can&#039;t remember what it was called.&quot;  So you type lsp(utils), and a quick perusal of the results reveals shortPathNames.]]></description>
		<content:encoded><![CDATA[<p>Yes.  unknownR is very useful, though maybe for a different use case.  That&#8217;s more about learning R, whereas as lsp is about &#8220;I&#8217;m sure utils had a function for getting 8 character DOS names, but I can&#8217;t remember what it was called.&#8221;  So you type lsp(utils), and a quick perusal of the results reveals shortPathNames.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exploring the functions in a package by richierocks</title>
		<link>http://4dpiecharts.com/2012/01/26/exploring-the-functions-in-a-package/#comment-497</link>
		<dc:creator><![CDATA[richierocks]]></dc:creator>
		<pubDate>Fri, 27 Jan 2012 11:15:15 +0000</pubDate>
		<guid isPermaLink="false">http://4dpiecharts.com/?p=444#comment-497</guid>
		<description><![CDATA[Yeah, autocompletion is great, and I use that as well.  The R GUI autocompletion only lists the first 10 or so results, so I find it&#039;s better for completion than discovery (unless you know the first few characters of what you are looking for).

Also, autocompletion varies between development environments.  I mostly use eclipse these days, and it doesn&#039;t limit completions to a particular package, even if you explcitily type ::.]]></description>
		<content:encoded><![CDATA[<p>Yeah, autocompletion is great, and I use that as well.  The R GUI autocompletion only lists the first 10 or so results, so I find it&#8217;s better for completion than discovery (unless you know the first few characters of what you are looking for).</p>
<p>Also, autocompletion varies between development environments.  I mostly use eclipse these days, and it doesn&#8217;t limit completions to a particular package, even if you explcitily type ::.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exploring the functions in a package by Jean-Robert (@le_girafe)</title>
		<link>http://4dpiecharts.com/2012/01/26/exploring-the-functions-in-a-package/#comment-496</link>
		<dc:creator><![CDATA[Jean-Robert (@le_girafe)]]></dc:creator>
		<pubDate>Fri, 27 Jan 2012 09:39:37 +0000</pubDate>
		<guid isPermaLink="false">http://4dpiecharts.com/?p=444#comment-496</guid>
		<description><![CDATA[There is also a package to help you discover functions you didn&#039;t know you didn&#039;t know. Quite useful to discover new functions... It&#039;s called unknownR (http://cran.r-project.org/web/packages/unknownR/index.html) and has been presented at LondonR (http://www.londonr.org/unknownR.pdf).
Enjoy
JR]]></description>
		<content:encoded><![CDATA[<p>There is also a package to help you discover functions you didn&#8217;t know you didn&#8217;t know. Quite useful to discover new functions&#8230; It&#8217;s called unknownR (<a href="http://cran.r-project.org/web/packages/unknownR/index.html" rel="nofollow">http://cran.r-project.org/web/packages/unknownR/index.html</a>) and has been presented at LondonR (<a href="http://www.londonr.org/unknownR.pdf" rel="nofollow">http://www.londonr.org/unknownR.pdf</a>).<br />
Enjoy<br />
JR</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exploring the functions in a package by Rainer</title>
		<link>http://4dpiecharts.com/2012/01/26/exploring-the-functions-in-a-package/#comment-495</link>
		<dc:creator><![CDATA[Rainer]]></dc:creator>
		<pubDate>Fri, 27 Jan 2012 09:07:44 +0000</pubDate>
		<guid isPermaLink="false">http://4dpiecharts.com/?p=444#comment-495</guid>
		<description><![CDATA[Nice - but I am sure that you know that you can view all exported functions of a package by typing e.g.

base:: TAB TAB

or 

base::: TAB TAB

to see all including non-exported functions?

Much faster and very easy to remember. In addition: by using :: yiou can sirectkly use that function, and the same applies for ::: if you want to use non-exported functions.

Cheers,

Rainer]]></description>
		<content:encoded><![CDATA[<p>Nice &#8211; but I am sure that you know that you can view all exported functions of a package by typing e.g.</p>
<p>base:: TAB TAB</p>
<p>or </p>
<p>base::: TAB TAB</p>
<p>to see all including non-exported functions?</p>
<p>Much faster and very easy to remember. In addition: by using :: yiou can sirectkly use that function, and the same applies for ::: if you want to use non-exported functions.</p>
<p>Cheers,</p>
<p>Rainer</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My New Year&#8217;s Resolution: Be lazier by Erlene Roop</title>
		<link>http://4dpiecharts.com/2011/01/03/my-new-years-resolution-be-lazier/#comment-476</link>
		<dc:creator><![CDATA[Erlene Roop]]></dc:creator>
		<pubDate>Wed, 04 Jan 2012 03:35:43 +0000</pubDate>
		<guid isPermaLink="false">http://4dpiecharts.com/?p=195#comment-476</guid>
		<description><![CDATA[Same here. I have always believed that working smarter is better than working harder. Have a more productive new year!]]></description>
		<content:encoded><![CDATA[<p>Same here. I have always believed that working smarter is better than working harder. Have a more productive new year!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

