<?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 Rforge</title>
	<atom:link href="http://rforge.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://rforge.org</link>
	<description>open source tools and statistical computing ++</description>
	<lastBuildDate>Tue, 21 Feb 2012 08:23:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on plotHR by rforge</title>
		<link>http://rforge.org/plothr/#comment-458</link>
		<dc:creator><![CDATA[rforge]]></dc:creator>
		<pubDate>Tue, 21 Feb 2012 08:23:01 +0000</pubDate>
		<guid isPermaLink="false">http://rforge.org/#comment-458</guid>
		<description><![CDATA[Thanks a lot Gordon! I got no notification from Wordpress about your ongoing comment activity, so that all your activity went completely unnoticed. I will dig into your code as soon as possible.

Great that you left a download link!

Best regards,
Reinhard]]></description>
		<content:encoded><![CDATA[<p>Thanks a lot Gordon! I got no notification from WordPress about your ongoing comment activity, so that all your activity went completely unnoticed. I will dig into your code as soon as possible.</p>
<p>Great that you left a download link!</p>
<p>Best regards,<br />
Reinhard</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL Error 1366: Incorrect Integer Value for Column by Rob</title>
		<link>http://rforge.org/2010/11/05/mysql-error-1366-incorrect-integer-value-for-column/#comment-457</link>
		<dc:creator><![CDATA[Rob]]></dc:creator>
		<pubDate>Tue, 21 Feb 2012 03:59:10 +0000</pubDate>
		<guid isPermaLink="false">http://rforge.org/?p=597#comment-457</guid>
		<description><![CDATA[Thanks]]></description>
		<content:encoded><![CDATA[<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Compressed backup of MySQL database by DBAWork</title>
		<link>http://rforge.org/2011/07/20/compressed-backup-of-mysql-database/#comment-436</link>
		<dc:creator><![CDATA[DBAWork]]></dc:creator>
		<pubDate>Thu, 12 Jan 2012 11:03:07 +0000</pubDate>
		<guid isPermaLink="false">http://rforge.org/?p=674#comment-436</guid>
		<description><![CDATA[Very Nice article ...]]></description>
		<content:encoded><![CDATA[<p>Very Nice article &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Command line instructions to create a database in MySQL by DBAWork</title>
		<link>http://rforge.org/2009/07/19/command-line-instructions-to-create-a-database-in-mysql/#comment-435</link>
		<dc:creator><![CDATA[DBAWork]]></dc:creator>
		<pubDate>Thu, 12 Jan 2012 07:12:39 +0000</pubDate>
		<guid isPermaLink="false">http://rforge.wordpress.com/?p=143#comment-435</guid>
		<description><![CDATA[Nice one .. thank you for sharing]]></description>
		<content:encoded><![CDATA[<p>Nice one .. thank you for sharing</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on plotHR by Max Gordon</title>
		<link>http://rforge.org/plothr/#comment-434</link>
		<dc:creator><![CDATA[Max Gordon]]></dc:creator>
		<pubDate>Mon, 09 Jan 2012 21:42:28 +0000</pubDate>
		<guid isPermaLink="false">http://rforge.org/#comment-434</guid>
		<description><![CDATA[Hello again,

I noticed some difficulties with the regular coxph() pspline and after some debugging I&#039;ve changed the pastebin (se prev. comment) to a version that works with the following test code:

&lt;code&gt;
hmohiv&lt;-read.table(&quot;http://www.ats.ucla.edu/stat/R/examples/asa/hmohiv.csv&quot;, sep=&quot;,&quot;, header = TRUE)

library(survival)
surv &lt;- with(hmohiv, Surv(time, censor))
fit &lt;- coxph(surv~ pspline(age) + drug, data=hmohiv)
par(xaxs=&quot;i&quot;, yaxs=&quot;i&quot;)
plotHR(fit, terms=&quot;age&quot;, bty=&quot;l&quot;, xlim=c(25, 55))

library(rms)
dd &lt;- datadist(hmohiv) # compute data distribution summary
options(datadist=’dd’) # for plotting

fit &lt;- cph(surv~ rcs(age, 5) + drug, data=hmohiv, x=T, y=T)
par(xaxs=&quot;i&quot;, yaxs=&quot;i&quot;)
plotHR(fit, terms=1, bty=&quot;l&quot;, xlim=c(25, 55))

fit &lt;- cph(surv~ rcs(age, 5), data=hmohiv, x=T, y=T)
par(xaxs=&quot;i&quot;, yaxs=&quot;i&quot;)
plotHR(fit, terms=&quot;age&quot;, bty=&quot;l&quot;, xlim=c(25, 55))

fit &lt;- cph(surv~ rcs(age, 5), data=hmohiv, x=T, y=T)
par(xaxs=&quot;i&quot;, yaxs=&quot;i&quot;)
plotHR(fit, terms=&quot;age&quot;, bty=&quot;l&quot;, xlim=c(25, 55), y.ticks=c(1,2,3), ylog=F, rug=&quot;ticks&quot;)
&lt;/code&gt;

I&#039;ve also changed the density polygon so that it doesn&#039;t need a second plot but is created in the main canvas - this way you don&#039;t need the dens.pos - the density is always positioned at the x-axis.

Another thing I changed was the ability to add exp() to the spline in case someone prefers that format on the yscale.]]></description>
		<content:encoded><![CDATA[<p>Hello again,</p>
<p>I noticed some difficulties with the regular coxph() pspline and after some debugging I&#8217;ve changed the pastebin (se prev. comment) to a version that works with the following test code:</p>
<p><code><br />
hmohiv&lt;-read.table(&quot;<a href="http://www.ats.ucla.edu/stat/R/examples/asa/hmohiv.csv&#038;quot" rel="nofollow">http://www.ats.ucla.edu/stat/R/examples/asa/hmohiv.csv&#038;quot</a>;, sep=&quot;,&quot;, header = TRUE)</p>
<p>library(survival)<br />
surv &lt;- with(hmohiv, Surv(time, censor))<br />
fit &lt;- coxph(surv~ pspline(age) + drug, data=hmohiv)<br />
par(xaxs=&quot;i&quot;, yaxs=&quot;i&quot;)<br />
plotHR(fit, terms=&quot;age&quot;, bty=&quot;l&quot;, xlim=c(25, 55))</p>
<p>library(rms)<br />
dd &lt;- datadist(hmohiv) # compute data distribution summary<br />
options(datadist=’dd’) # for plotting</p>
<p>fit &lt;- cph(surv~ rcs(age, 5) + drug, data=hmohiv, x=T, y=T)<br />
par(xaxs=&quot;i&quot;, yaxs=&quot;i&quot;)<br />
plotHR(fit, terms=1, bty=&quot;l&quot;, xlim=c(25, 55))</p>
<p>fit &lt;- cph(surv~ rcs(age, 5), data=hmohiv, x=T, y=T)<br />
par(xaxs=&quot;i&quot;, yaxs=&quot;i&quot;)<br />
plotHR(fit, terms=&quot;age&quot;, bty=&quot;l&quot;, xlim=c(25, 55))</p>
<p>fit &lt;- cph(surv~ rcs(age, 5), data=hmohiv, x=T, y=T)<br />
par(xaxs=&quot;i&quot;, yaxs=&quot;i&quot;)<br />
plotHR(fit, terms=&quot;age&quot;, bty=&quot;l&quot;, xlim=c(25, 55), y.ticks=c(1,2,3), ylog=F, rug=&quot;ticks&quot;)<br />
</code></p>
<p>I&#8217;ve also changed the density polygon so that it doesn&#8217;t need a second plot but is created in the main canvas &#8211; this way you don&#8217;t need the dens.pos &#8211; the density is always positioned at the x-axis.</p>
<p>Another thing I changed was the ability to add exp() to the spline in case someone prefers that format on the yscale.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on plotHR by Max Gordon</title>
		<link>http://rforge.org/plothr/#comment-384</link>
		<dc:creator><![CDATA[Max Gordon]]></dc:creator>
		<pubDate>Tue, 06 Dec 2011 21:01:07 +0000</pubDate>
		<guid isPermaLink="false">http://rforge.org/#comment-384</guid>
		<description><![CDATA[Hello Reinhard,

I worked a little more with the plotHR adapting it to my needs. You can find the latest version here: http://pastebin.com/v0LZje5F

What I&#039;ve done is to add the possibility of plotting mutliple models in the same plot. As I&#039;ve posted previously I&#039;m struggling with the finding out how to do time dependent coefficients in R and right now I&#039;m chopping up the time and plotting the graphs on top of each-other. It&#039;s not a dream solution but it does the job OK.

I&#039;ve also realized what the waist of the cph() cox regression represents - it is the reference that all the others relate to. If you do a:

abline(h=0, col=rgb(0.5, 0.5, 0.5, 0.5), lty=2)
abline(v=median(data[, term.label]), col=rgb(0.7, 0.7, 0.7. 0.5), lty=2)

you get a cross through the waist. I guess it&#039;s not so strange but now I&#039;m a little confused how the regular coxph() does this without a reference. After all cph() should only be a wrapper around coxph().

Thanks once more for your excellent software :-)

Regards
Max]]></description>
		<content:encoded><![CDATA[<p>Hello Reinhard,</p>
<p>I worked a little more with the plotHR adapting it to my needs. You can find the latest version here: <a href="http://pastebin.com/v0LZje5F" rel="nofollow">http://pastebin.com/v0LZje5F</a></p>
<p>What I&#8217;ve done is to add the possibility of plotting mutliple models in the same plot. As I&#8217;ve posted previously I&#8217;m struggling with the finding out how to do time dependent coefficients in R and right now I&#8217;m chopping up the time and plotting the graphs on top of each-other. It&#8217;s not a dream solution but it does the job OK.</p>
<p>I&#8217;ve also realized what the waist of the cph() cox regression represents &#8211; it is the reference that all the others relate to. If you do a:</p>
<p>abline(h=0, col=rgb(0.5, 0.5, 0.5, 0.5), lty=2)<br />
abline(v=median(data[, term.label]), col=rgb(0.7, 0.7, 0.7. 0.5), lty=2)</p>
<p>you get a cross through the waist. I guess it&#8217;s not so strange but now I&#8217;m a little confused how the regular coxph() does this without a reference. After all cph() should only be a wrapper around coxph().</p>
<p>Thanks once more for your excellent software <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Regards<br />
Max</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Data Backup in the AWS Cloud with rsync by rforge</title>
		<link>http://rforge.org/2011/11/16/data-backup-in-the-aws-cloud-with-rsync/#comment-329</link>
		<dc:creator><![CDATA[rforge]]></dc:creator>
		<pubDate>Wed, 23 Nov 2011 20:27:27 +0000</pubDate>
		<guid isPermaLink="false">http://rforge.org/?p=722#comment-329</guid>
		<description><![CDATA[I started to use Duplicati yesterday and are very pleased so far:
&lt;ol&gt;
&lt;li&gt;The graphical user interface is &lt;em&gt;very&lt;/em&gt; intuitive and understandable&lt;/li&gt;
&lt;li&gt;The backup is encrypted in the Amazon S3 bucket&lt;/li&gt;
&lt;li&gt;Compression seems to be possible (not default?) which is great; my backup seems not compressed though. I will check this out later.&lt;/li&gt;
&lt;/ol&gt;
I did not try to recover from backup which is the important part ;) When I find the time I will do a simulated recovery. When Duplicati lives up to its promise (which I do not doubt) it is exactly what I was looking for all the time...

I would like to see it included in Xubuntu (my favorite distro) by default - that would save a lot of people a lot of headache, I suppose....]]></description>
		<content:encoded><![CDATA[<p>I started to use Duplicati yesterday and are very pleased so far:</p>
<ol>
<li>The graphical user interface is <em>very</em> intuitive and understandable</li>
<li>The backup is encrypted in the Amazon S3 bucket</li>
<li>Compression seems to be possible (not default?) which is great; my backup seems not compressed though. I will check this out later.</li>
</ol>
<p>I did not try to recover from backup which is the important part <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  When I find the time I will do a simulated recovery. When Duplicati lives up to its promise (which I do not doubt) it is exactly what I was looking for all the time&#8230;</p>
<p>I would like to see it included in Xubuntu (my favorite distro) by default &#8211; that would save a lot of people a lot of headache, I suppose&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GAM Plot with 95% Confidence Shade by Viktoriia</title>
		<link>http://rforge.org/2009/08/11/gam-plot-with-95-confidence-shade/#comment-328</link>
		<dc:creator><![CDATA[Viktoriia]]></dc:creator>
		<pubDate>Wed, 23 Nov 2011 15:47:52 +0000</pubDate>
		<guid isPermaLink="false">http://rforge.wordpress.com/?p=345#comment-328</guid>
		<description><![CDATA[That&#039;s so great! It helped me a lot! Thank you so much.]]></description>
		<content:encoded><![CDATA[<p>That&#8217;s so great! It helped me a lot! Thank you so much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Plot Function For Additive Cox Proportional Hazard Regression by Max Gordon</title>
		<link>http://rforge.org/2009/10/30/plot-function-for-additive-cox-proportional-hazard-regression/#comment-322</link>
		<dc:creator><![CDATA[Max Gordon]]></dc:creator>
		<pubDate>Sun, 20 Nov 2011 15:30:48 +0000</pubDate>
		<guid isPermaLink="false">http://rforge.wordpress.com/2009/10/30/plot-function-for-additive-cox-proportional-hazard-regression/#comment-322</guid>
		<description><![CDATA[Ahh... found the issue: predict for cph ignores the &quot;terms&quot; option. I added a fix for when the term$fit has mutliple column - it may not be beautiful but it works :-)

I&#039;m a little surprised that the waist of the cph spline is so narrow (se the above example) - I can&#039;t understand quite why this is... 

I&#039;ve updated the pastebin to the latest version.

A little off-topic - I&#039;ve noticed some problems with the prop. hazards assumptions in my data and I want to do a time-spline the way the coxvc package did but I haven&#039;t had any luck with my &lt;a href=&quot;http://stats.stackexchange.com/questions/18576/time-dependent-coefficients-in-r-how-to-do-it&quot; rel=&quot;nofollow&quot;&gt;post on CrossValidated&lt;/a&gt; - perhaps you have an idea? I would like to have a similar plot to the plotHR but for the time axis - the plot that the timecox function provides just seems unappealing to the eye and I believe that the time function in my case is smooth...]]></description>
		<content:encoded><![CDATA[<p>Ahh&#8230; found the issue: predict for cph ignores the &#8220;terms&#8221; option. I added a fix for when the term$fit has mutliple column &#8211; it may not be beautiful but it works <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I&#8217;m a little surprised that the waist of the cph spline is so narrow (se the above example) &#8211; I can&#8217;t understand quite why this is&#8230; </p>
<p>I&#8217;ve updated the pastebin to the latest version.</p>
<p>A little off-topic &#8211; I&#8217;ve noticed some problems with the prop. hazards assumptions in my data and I want to do a time-spline the way the coxvc package did but I haven&#8217;t had any luck with my <a href="http://stats.stackexchange.com/questions/18576/time-dependent-coefficients-in-r-how-to-do-it" rel="nofollow">post on CrossValidated</a> &#8211; perhaps you have an idea? I would like to have a similar plot to the plotHR but for the time axis &#8211; the plot that the timecox function provides just seems unappealing to the eye and I believe that the time function in my case is smooth&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Data Backup in the AWS Cloud with rsync by Duplicati Backup</title>
		<link>http://rforge.org/2011/11/16/data-backup-in-the-aws-cloud-with-rsync/#comment-319</link>
		<dc:creator><![CDATA[Duplicati Backup]]></dc:creator>
		<pubDate>Sat, 19 Nov 2011 16:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://rforge.org/?p=722#comment-319</guid>
		<description><![CDATA[There is an easier way to back up your data: Duplicati. Duplicati is a backup tool that stores encrypted, incremental, compressed backups on remote file servers. Internally it uses the rsync algorythm to create the incremental backup (rsync, rdiff) and it has encryption and support for various cloud storage services built in (SkyDrive, AWS, Rackspace, ...) but also standard transfer protocols like SSH, WebDAV, FTP.

A few days ago a Ubuntu (Debian) package has been released. http://www.duplicati.com/news/packagesforubuntudebianredhatandothers

Try it out and tell us what you think!]]></description>
		<content:encoded><![CDATA[<p>There is an easier way to back up your data: Duplicati. Duplicati is a backup tool that stores encrypted, incremental, compressed backups on remote file servers. Internally it uses the rsync algorythm to create the incremental backup (rsync, rdiff) and it has encryption and support for various cloud storage services built in (SkyDrive, AWS, Rackspace, &#8230;) but also standard transfer protocols like SSH, WebDAV, FTP.</p>
<p>A few days ago a Ubuntu (Debian) package has been released. <a href="http://www.duplicati.com/news/packagesforubuntudebianredhatandothers" rel="nofollow">http://www.duplicati.com/news/packagesforubuntudebianredhatandothers</a></p>
<p>Try it out and tell us what you think!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

