<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>R-bloggers &#187; cran</title>
	<atom:link href="http://www.r-bloggers.com/tag/cran/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.r-bloggers.com</link>
	<description>R news and tutorials contributed by (300) R bloggers</description>
	<lastBuildDate>Tue, 07 Feb 2012 10:27:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>int64: 64 bit integer vectors for R</title>
		<link>http://www.r-bloggers.com/int64-64-bit-integer-vectors-for-r/</link>
		<comments>http://www.r-bloggers.com/int64-64-bit-integer-vectors-for-r/#comments</comments>
		<pubDate>Sat, 26 Nov 2011 09:50:00 +0000</pubDate>
		<dc:creator>romain francois</dc:creator>
				<category><![CDATA[R bloggers]]></category>
		<category><![CDATA[cplusplus]]></category>
		<category><![CDATA[cran]]></category>
		<category><![CDATA[int64]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[R package]]></category>
		<category><![CDATA[Rcpp]]></category>
		<category><![CDATA[RProtoBuf]]></category>

		<guid isPermaLink="false">http://www.r-bloggers.com/?guid=bbaca728180bc01e7a76facb54353ff3</guid>
		<description><![CDATA[    

The Google Open Source Programs Office sponsored me to create the new int64 package that has been released to CRAN a few days ago. The package has been mentionned in an article in the open source blog from Google. 
 
The package defines classes i...]]></description>
			<content:encoded><![CDATA[<p class="syndicated-attribution"><div style="border: 1px solid; background: none repeat scroll 0 0 #EDEDED; margin: 1px; font-size: 12px;">
(This article was first published on  <strong><a href="http://romainfrancois.blog.free.fr/index.php?post/2011/11/26/int64:-64-bit-integer-vectors-for-R"> Romain Francois, Professional R Enthusiast - Tag - R</a></strong>, and kindly contributed to <a href="http://www.r-bloggers.com/">R-bloggers)</a>      
</div></p>
    <a href="http://cran.r-project.org/web/packages/int64/index.html" ref="nofollow" target="_blank"><img src="http://romainfrancois.blog.free.fr/public/packages/int64/google-64.png" alt="google-64.png" style="margin: 0 auto; display: block;" title="google-64.png, nov. 2011" /></a>

<p>The <a href="http://code.google.com/opensource/" ref="nofollow" target="_blank">Google Open Source Programs Office</a> sponsored me to create the new <a href="http://cran.r-project.org/web/packages/int64/index.html" ref="nofollow" target="_blank">int64</a> package that has been released to CRAN a few days ago. The package has been mentionned in an article in the <a href="http://google-opensource.blogspot.com/2011/11/bringing-64-bit-data-to-r.html" ref="nofollow" target="_blank">open source blog from Google</a>. </p>
 
<p>The package defines classes int64 and uint64 that represent signed and unsigned 64 bit integer vectors. The package also allows conversion of several types (integer, numeric, character, logical) to 64 bit integer vectors, arithmetic operations as well as other standard group generic functions, and reading 64 bit integer vectors as a data.frame column using int64 or uint64 as the colClasses argument. </p>

<p>The package has a <a href="http://cran.r-project.org/web/packages/int64/vignettes/int64.pdf" ref="nofollow" target="_blank">vignette</a> that details its features, several examples are given in the usual help files. Once again, I've used <a href="http://cran.r-project.org/web/packages/RUnit/index.html" ref="nofollow" target="_blank">RUnit</a> for quality insurance about the package code</p>

<p><a href="http://cran.r-project.org/web/packages/int64/index.html" ref="nofollow" target="_blank">int64</a> has been developped so that 64 bit integer vectors are represented using only R data structures, i.e data is not represented as external pointers to some C++ object. Instead, each 64 bit integer is represented as a couple of regular 32 bit integers, each of them carrying half the bits of the underlying 64 bit integer. This was a choice by design so that 64 bit integer vectors can be serialized and used as data frame columns. </p>

<p>The package contains C++ headers that third party packages can used (via LinkingTo: int64) to use the C++ internals. This allows creation and manipulation of the objects in C++. The internals will be documented in another vignette for package developpers who wish to use the internals. For the moment, the main entry point is the C++ template class LongVector. </p>

<p>I'm particularly proud that Google trusted me to sponsor the development of <a href="http://cran.r-project.org/web/packages/int64/index.html" ref="nofollow" target="_blank">int64</a>. The next versions of packages <a href="http://dirk.eddelbuettel.com/code/rcpp.html" ref="nofollow" target="_blank">Rcpp</a> and <a href="http://dirk.eddelbuettel.com/code/rprotobuf.html" ref="nofollow" target="_blank">RProtoBuf</a> take advantage of the facilities of <a href="http://cran.r-project.org/web/packages/int64/index.html" ref="nofollow" target="_blank">int64</a>, e.g. Rcpp gains wrapping of C++ containers of 64 bit integers as R objects of classes int64 and uint64 and RProtoBuf improves handling of 64 bit integers in protobuf messages. More on this later</p>
<p class="syndicated-attribution"><div style="border: 1px solid; background: none repeat scroll 0 0 #EDEDED; margin: 1px; font-size: 13px;">
<div style="text-align: center;">To <strong>leave a comment</strong> for the author, please follow the link and comment on his blog: <strong><a href="http://romainfrancois.blog.free.fr/index.php?post/2011/11/26/int64:-64-bit-integer-vectors-for-R"> Romain Francois, Professional R Enthusiast - Tag - R</a></strong>.</div>
<hr />
<a href="http://www.r-bloggers.com/">R-bloggers.com</a> offers <strong><a href="http://feedburner.google.com/fb/a/mailverify?uri=RBloggers">daily e-mail updates</a></strong> about <a title="The R Project for Statistical Computing" href="http://www.r-project.org/">R</a> news and <a title="R tutorials" href="http://www.r-bloggers.com/?s=tutorial">tutorials</a> on topics such as: visualization (<a title="ggplot and ggplot2 tutorials" href="http://www.r-bloggers.com/?s=ggplot2">ggplot2</a>, <a title="Boxplots using lattice and ggplot2 tutorials" href="http://www.r-bloggers.com/?s=boxplot">Boxplots</a>, <a title="Maps and gis" href="http://www.r-bloggers.com/?s=map">maps</a>, <a title="Animation in R" href="http://www.r-bloggers.com/?s=animation">animation</a>), programming (<a title="RStudio IDE for R" href="http://www.r-bloggers.com/?s=RStudio">RStudio</a>, <a title="Sweave and literate programming" href="http://www.r-bloggers.com/?s=sweave">Sweave</a>, <a title="LaTeX in R" href="http://www.r-bloggers.com/?s=LaTeX">LaTeX</a>, <a title="SQL and databases" href="http://www.r-bloggers.com/?s=SQL">SQL</a>, <a title="Eclipse IDE for R" href="http://www.r-bloggers.com/?s=eclipse">Eclipse</a>, <a title="git and github, Version Control System" href="http://www.r-bloggers.com/?s=git">git</a>, <a title="Large data in R using Hadoop" href="http://www.r-bloggers.com/?s=hadoop">hadoop</a>, <a title="Web Scraping of google, facebook, yahoo, twitter and more using R" href="http://www.r-bloggers.com/?s=Web+Scraping">Web Scraping</a>) statistics (<a title="Regressions and ANOVA analysis tutorials" href="http://www.r-bloggers.com/?s=regression">regression</a>, <a title="principal component analysis tutorial" href="http://www.r-bloggers.com/?s=PCA">PCA</a>, <a title="Time series" href="http://www.r-bloggers.com/?s=time+series">time series</a>,<a title="ecdf" href="http://www.r-bloggers.com/?s=ecdf">ecdf</a>, <a title="finance trading" href="http://www.r-bloggers.com/?s=trading">trading</a>) and more...
</div></p>]]></content:encoded>
			<wfw:commentRss>http://www.r-bloggers.com/int64-64-bit-integer-vectors-for-r/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rcpp reverse dependency graph</title>
		<link>http://www.r-bloggers.com/rcpp-reverse-dependency-graph/</link>
		<comments>http://www.r-bloggers.com/rcpp-reverse-dependency-graph/#comments</comments>
		<pubDate>Sun, 30 Oct 2011 09:05:00 +0000</pubDate>
		<dc:creator>romain francois</dc:creator>
				<category><![CDATA[R bloggers]]></category>
		<category><![CDATA[cran]]></category>
		<category><![CDATA[graphviz]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[Rcpp]]></category>

		<guid isPermaLink="false">http://www.r-bloggers.com/?guid=56d3d45526f27dc35f00a956a0812ab9</guid>
		<description><![CDATA[    I played around with reverse dependencies of Rcpp. At the moment, 44 packages depend on Rcpp and the number goes up to 53 when counting recusive reverse dependencies.

I've used graphviz for the representation of the directed graph



Here is the c...]]></description>
			<content:encoded><![CDATA[<p class="syndicated-attribution"><div style="border: 1px solid; background: none repeat scroll 0 0 #EDEDED; margin: 1px; font-size: 12px;">
(This article was first published on  <strong><a href="http://romainfrancois.blog.free.fr/index.php?post/2011/10/30/Rcpp-reverse-dependency-graph"> Romain Francois, Professional R Enthusiast - Tag - R</a></strong>, and kindly contributed to <a href="http://www.r-bloggers.com/">R-bloggers)</a>      
</div></p>
    <p>I played around with reverse dependencies of <a href="http://dirk.eddelbuettel.com/code/rcpp.html" ref="nofollow" target="_blank">Rcpp</a>. At the moment, 44 packages depend on <a href="http://dirk.eddelbuettel.com/code/rcpp.html" ref="nofollow" target="_blank">Rcpp</a> and the number goes up to 53 when counting recusive reverse dependencies.</p>

<p>I've used <a href="http://www.graphviz.org/" ref="nofollow" target="_blank">graphviz</a> for the representation of the directed graph</p>

<img src="http://romainfrancois.blog.free.fr/public/packages/Rcpp/dep.png" alt="dep.png" style="margin: 0 auto; display: block;" title="dep.png, oct. 2011" />

<p>Here is the code I've used to generate the dot file:</p>

<iframe src="http://romainfrancois.blog.free.fr/public/packages/Rcpp/depends.html" width=550 height=400></iframe>
<p class="syndicated-attribution"><div style="border: 1px solid; background: none repeat scroll 0 0 #EDEDED; margin: 1px; font-size: 13px;">
<div style="text-align: center;">To <strong>leave a comment</strong> for the author, please follow the link and comment on his blog: <strong><a href="http://romainfrancois.blog.free.fr/index.php?post/2011/10/30/Rcpp-reverse-dependency-graph"> Romain Francois, Professional R Enthusiast - Tag - R</a></strong>.</div>
<hr />
<a href="http://www.r-bloggers.com/">R-bloggers.com</a> offers <strong><a href="http://feedburner.google.com/fb/a/mailverify?uri=RBloggers">daily e-mail updates</a></strong> about <a title="The R Project for Statistical Computing" href="http://www.r-project.org/">R</a> news and <a title="R tutorials" href="http://www.r-bloggers.com/?s=tutorial">tutorials</a> on topics such as: visualization (<a title="ggplot and ggplot2 tutorials" href="http://www.r-bloggers.com/?s=ggplot2">ggplot2</a>, <a title="Boxplots using lattice and ggplot2 tutorials" href="http://www.r-bloggers.com/?s=boxplot">Boxplots</a>, <a title="Maps and gis" href="http://www.r-bloggers.com/?s=map">maps</a>, <a title="Animation in R" href="http://www.r-bloggers.com/?s=animation">animation</a>), programming (<a title="RStudio IDE for R" href="http://www.r-bloggers.com/?s=RStudio">RStudio</a>, <a title="Sweave and literate programming" href="http://www.r-bloggers.com/?s=sweave">Sweave</a>, <a title="LaTeX in R" href="http://www.r-bloggers.com/?s=LaTeX">LaTeX</a>, <a title="SQL and databases" href="http://www.r-bloggers.com/?s=SQL">SQL</a>, <a title="Eclipse IDE for R" href="http://www.r-bloggers.com/?s=eclipse">Eclipse</a>, <a title="git and github, Version Control System" href="http://www.r-bloggers.com/?s=git">git</a>, <a title="Large data in R using Hadoop" href="http://www.r-bloggers.com/?s=hadoop">hadoop</a>, <a title="Web Scraping of google, facebook, yahoo, twitter and more using R" href="http://www.r-bloggers.com/?s=Web+Scraping">Web Scraping</a>) statistics (<a title="Regressions and ANOVA analysis tutorials" href="http://www.r-bloggers.com/?s=regression">regression</a>, <a title="principal component analysis tutorial" href="http://www.r-bloggers.com/?s=PCA">PCA</a>, <a title="Time series" href="http://www.r-bloggers.com/?s=time+series">time series</a>,<a title="ecdf" href="http://www.r-bloggers.com/?s=ecdf">ecdf</a>, <a title="finance trading" href="http://www.r-bloggers.com/?s=trading">trading</a>) and more...
</div></p>]]></content:encoded>
			<wfw:commentRss>http://www.r-bloggers.com/rcpp-reverse-dependency-graph/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the Wang-Landau algorithm reaches the flat histogram in finite time</title>
		<link>http://www.r-bloggers.com/the-wang-landau-algorithm-reaches-the-flat-histogram-in-finite-time/</link>
		<comments>http://www.r-bloggers.com/the-wang-landau-algorithm-reaches-the-flat-histogram-in-finite-time/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 22:11:14 +0000</pubDate>
		<dc:creator>xi'an</dc:creator>
				<category><![CDATA[R bloggers]]></category>
		<category><![CDATA[cran]]></category>
		<category><![CDATA[Markov chains]]></category>
		<category><![CDATA[MCMC algorithms]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[University life]]></category>
		<category><![CDATA[Wang-Landau algorithm]]></category>

		<guid isPermaLink="false">http://xianblog.wordpress.com/?p=12899</guid>
		<description><![CDATA[Pierre Jacob and Robin Ryder (from Paris-Dauphine, CREST, and Statisfaction) have just arXived (and submitted to the Annals of Applied Probability) a neat result on the Wang-Landau algorithm. (This algorithm, which modifies the target in a sort of reweighted partioned sampling to achieve faster convergence, has always been perplexing to me.)  They show that some [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xianblog.wordpress.com&#38;blog=5051449&#38;post=12899&#38;subd=xianblog&#38;ref=&#38;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="syndicated-attribution"><div style="border: 1px solid; background: none repeat scroll 0 0 #EDEDED; margin: 1px; font-size: 12px;">
(This article was first published on  <strong><a href="http://xianblog.wordpress.com/2011/10/20/the-wang-landau-algorithm-reaches-the-flat-histogram-in-finite-time/"> Xi'an's Og » R</a></strong>, and kindly contributed to <a href="http://www.r-bloggers.com/">R-bloggers)</a>      
</div></p>
<p style="text-align:justify;"><a href="http://statisfaction.wordpress.com/2011/09/21/density-exploration-and-wang-landau-algorithms-with-r-package/" ref="nofollow" target="_blank"><strong>P</strong>ierre Jacob</a> and Robin Ryder (from <a href="http://www.ceremade.dauphine.fr/" ref="nofollow" target="_blank">Paris-Dauphine</a>, <a href="http://www.crest.fr" ref="nofollow" target="_blank">CREST</a>, and <a href="http://statisfaction.wordpress.com/" ref="nofollow" target="_blank">Statisfaction</a>) have just <a href="http://arxiv.org/abs/1110.4025" ref="nofollow" target="_blank">arXived</a> (and submitted to the <a title="Annals of Applied Probability" href="http://www.imstat.org/aap/" ref="nofollow" target="_blank">Annals of Applied Probability)</a> a neat result on the <a href="http://en.wikipedia.org/wiki/Wang_and_Landau_algorithm" ref="nofollow" target="_blank">Wang-Landau algorithm</a>. (This <a title="Adap’skiii [day 2]" href="http://xianblog.wordpress.com/2011/01/05/adapskiii-day-2/" ref="nofollow" target="_blank">algorithm</a>, which modifies the target in a sort of reweighted partioned sampling to achieve faster convergence, has always been perplexing to me.)  They show that some variations of the Wang-Landau algorithm meet the flat histogram criterion in finite time, and, just as importantly that other variations do not reach this criterion. The proof uses elegant Markov chain arguments and I hope the paper makes it through, as there are very few theoretical results on this algorithm. (Pierre also wrote recently a paper with Luke Bornn, Arnaud Doucet, and Pierre Del Moral, on <a href="http://arxiv.org/abs/1109.3829" ref="nofollow" target="_blank">An Adaptive Interacting Wang-Landau Algorithm for Automatic Density Exploration</a> last week, with an associated <a href="http://code.google.com/p/rpawl/" ref="nofollow" target="_blank">R package</a>. Not yet on <a href="http://cran.r-project.org/" ref="nofollow" target="_blank">CRAN</a>.)</p>
<br />Filed under: <a href='http://xianblog.wordpress.com/category/statistics/r-statistics/' ref="nofollow" target="_blank">R</a>, <a href='http://xianblog.wordpress.com/category/statistics/' ref="nofollow" target="_blank">Statistics</a>, <a href='http://xianblog.wordpress.com/category/university-life/' ref="nofollow" target="_blank">University life</a> Tagged: <a href='http://xianblog.wordpress.com/tag/cran/' ref="nofollow" target="_blank">CRAN</a>, <a href='http://xianblog.wordpress.com/tag/markov-chains/' ref="nofollow" target="_blank">Markov chains</a>, <a href='http://xianblog.wordpress.com/tag/mcmc-algorithms/' ref="nofollow" target="_blank">MCMC algorithms</a>, <a href='http://xianblog.wordpress.com/tag/r/' ref="nofollow" target="_blank">R</a>, <a href='http://xianblog.wordpress.com/tag/wang-landau-algorithm/' ref="nofollow" target="_blank">Wang-Landau algorithm</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xianblog.wordpress.com/12899/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xianblog.wordpress.com/12899/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xianblog.wordpress.com/12899/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xianblog.wordpress.com/12899/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/xianblog.wordpress.com/12899/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/xianblog.wordpress.com/12899/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/xianblog.wordpress.com/12899/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/xianblog.wordpress.com/12899/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xianblog.wordpress.com/12899/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xianblog.wordpress.com/12899/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xianblog.wordpress.com/12899/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xianblog.wordpress.com/12899/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xianblog.wordpress.com/12899/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xianblog.wordpress.com/12899/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xianblog.wordpress.com&amp;blog=5051449&amp;post=12899&amp;subd=xianblog&amp;ref=&amp;feed=1" width="1" height="1" />
<p class="syndicated-attribution"><div style="border: 1px solid; background: none repeat scroll 0 0 #EDEDED; margin: 1px; font-size: 13px;">
<div style="text-align: center;">To <strong>leave a comment</strong> for the author, please follow the link and comment on his blog: <strong><a href="http://xianblog.wordpress.com/2011/10/20/the-wang-landau-algorithm-reaches-the-flat-histogram-in-finite-time/"> Xi'an's Og » R</a></strong>.</div>
<hr />
<a href="http://www.r-bloggers.com/">R-bloggers.com</a> offers <strong><a href="http://feedburner.google.com/fb/a/mailverify?uri=RBloggers">daily e-mail updates</a></strong> about <a title="The R Project for Statistical Computing" href="http://www.r-project.org/">R</a> news and <a title="R tutorials" href="http://www.r-bloggers.com/?s=tutorial">tutorials</a> on topics such as: visualization (<a title="ggplot and ggplot2 tutorials" href="http://www.r-bloggers.com/?s=ggplot2">ggplot2</a>, <a title="Boxplots using lattice and ggplot2 tutorials" href="http://www.r-bloggers.com/?s=boxplot">Boxplots</a>, <a title="Maps and gis" href="http://www.r-bloggers.com/?s=map">maps</a>, <a title="Animation in R" href="http://www.r-bloggers.com/?s=animation">animation</a>), programming (<a title="RStudio IDE for R" href="http://www.r-bloggers.com/?s=RStudio">RStudio</a>, <a title="Sweave and literate programming" href="http://www.r-bloggers.com/?s=sweave">Sweave</a>, <a title="LaTeX in R" href="http://www.r-bloggers.com/?s=LaTeX">LaTeX</a>, <a title="SQL and databases" href="http://www.r-bloggers.com/?s=SQL">SQL</a>, <a title="Eclipse IDE for R" href="http://www.r-bloggers.com/?s=eclipse">Eclipse</a>, <a title="git and github, Version Control System" href="http://www.r-bloggers.com/?s=git">git</a>, <a title="Large data in R using Hadoop" href="http://www.r-bloggers.com/?s=hadoop">hadoop</a>, <a title="Web Scraping of google, facebook, yahoo, twitter and more using R" href="http://www.r-bloggers.com/?s=Web+Scraping">Web Scraping</a>) statistics (<a title="Regressions and ANOVA analysis tutorials" href="http://www.r-bloggers.com/?s=regression">regression</a>, <a title="principal component analysis tutorial" href="http://www.r-bloggers.com/?s=PCA">PCA</a>, <a title="Time series" href="http://www.r-bloggers.com/?s=time+series">time series</a>,<a title="ecdf" href="http://www.r-bloggers.com/?s=ecdf">ecdf</a>, <a title="finance trading" href="http://www.r-bloggers.com/?s=trading">trading</a>) and more...
</div></p>]]></content:encoded>
			<wfw:commentRss>http://www.r-bloggers.com/the-wang-landau-algorithm-reaches-the-flat-histogram-in-finite-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://1.gravatar.com/avatar/ba847ef5873101769043f6260d57282a?s=96&amp;amp;d=identicon" length="" type="" />
		</item>
		<item>
		<title>Two-way CRAN</title>
		<link>http://www.r-bloggers.com/two-way-cran/</link>
		<comments>http://www.r-bloggers.com/two-way-cran/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 11:21:03 +0000</pubDate>
		<dc:creator>mbq</dc:creator>
				<category><![CDATA[R bloggers]]></category>
		<category><![CDATA[cran]]></category>
		<category><![CDATA[crantastic]]></category>
		<category><![CDATA[R tips&tricks]]></category>

		<guid isPermaLink="false">http://stats.blogoverflow.com/?p=25</guid>
		<description><![CDATA[Sooner on later, every useR will manage to exhaust R&#8217;s built-in capabilities and land on CRAN looking for his dreamed needle in a haystack of 3k+ contributed packages. Probably most of you already know stuff like Task Views or rseek which make finding something relevant a bit easier than digging the full list or googling, however all methods [...]]]></description>
			<content:encoded><![CDATA[<p class="syndicated-attribution"><div style="border: 1px solid; background: none repeat scroll 0 0 #EDEDED; margin: 1px; font-size: 12px;">
(This article was first published on  <strong><a href="http://stats.blogoverflow.com/2011/07/26/two-way-cran/"> Stack Exchange Stats Blog » R tips&tricks</a></strong>, and kindly contributed to <a href="http://www.r-bloggers.com/">R-bloggers)</a>      
</div></p>
<p>Sooner on later, every useR will manage to exhaust R&#8217;s built-in capabilities and land on <a href="http://cran.r-project.org/" ref="nofollow" target="_blank">CRAN</a> looking for his dreamed needle in a haystack of 3k+ contributed packages. Probably most of you already know stuff like <a href="http://cran.r-project.org/web/views/" ref="nofollow" target="_blank">Task Views</a> or <a href="http://rseek.org/" ref="nofollow" target="_blank">rseek</a> which make finding something relevant a bit easier than digging the full list or googling, however all methods will eventually lead to a CRAN package page like this:</p>

<div id="attachment_55" class="wp-caption aligncenter" style="width: 459px"><a href="http://stats.blogoverflow.com/files/2011/07/cran-sample.png" ref="nofollow" target="_blank"><img class="size-full wp-image-55" src="http://stats.blogoverflow.com/files/2011/07/cran-sample.png" alt="CRAN page for rgl package" width="449" height="422" /></a><p class="wp-caption-text">Sample CRAN package page</p></div>

<p>Ok, but what&#8217;s the problem? We have basic info here, sources, manuals, builds, dependencies&#8230; Well, let&#8217;s compare this to some modern application repositories like Android Market, Mozilla Add-ons or AppStore; we&#8217;ll immediately notice lack of any form of user feedback, neither as ratings nor reviews. And such stuff may be quite handy &#8212; imagine you have for instance found three packages doing certain thing; surely one of them will be fastest, one least bloated, one most functional and one will best integrate with the rest of your code, but you probably won&#8217;t be able to deduce this easily from manuals.  Or you&#8217;ve found a package from 2003 and you don&#8217;t really want to check whether it is an abandoned code dependent on a bunch of obsolete quirks or just a solid code that just didn&#8217;t require any modifications. Or you have been using foozifier for years not knowing that bartools&#8217; functionWithConfusingName does the same 50 times faster using 1/1000 of RAM. Or you just thought you can&#8217;t baz in R, yet the only problem was that the bazzing package author thought it was called wizzing.</p>

<p>Moreover, this is also useful for package authors &#8212; comment is much easier and more reusable way of leaving feedback than e-mail, so you can count on more reports and thus catch more bugs and gather more good feature ideas.</p>

<p>What&#8217;s worse with this story is that this is more-less already here; it is called <a href="http://crantastic.org/" ref="nofollow" target="_blank">Crantastic</a> and works pretty well, not counting the fact that it would certainly benefit from some more traffic &#8212; so, go there and check if you are registered user of all packages you&#8217;ve installed and start contributing; it really comes back!</p>

<p class="syndicated-attribution"><div style="border: 1px solid; background: none repeat scroll 0 0 #EDEDED; margin: 1px; font-size: 13px;">
<div style="text-align: center;">To <strong>leave a comment</strong> for the author, please follow the link and comment on his blog: <strong><a href="http://stats.blogoverflow.com/2011/07/26/two-way-cran/"> Stack Exchange Stats Blog » R tips&tricks</a></strong>.</div>
<hr />
<a href="http://www.r-bloggers.com/">R-bloggers.com</a> offers <strong><a href="http://feedburner.google.com/fb/a/mailverify?uri=RBloggers">daily e-mail updates</a></strong> about <a title="The R Project for Statistical Computing" href="http://www.r-project.org/">R</a> news and <a title="R tutorials" href="http://www.r-bloggers.com/?s=tutorial">tutorials</a> on topics such as: visualization (<a title="ggplot and ggplot2 tutorials" href="http://www.r-bloggers.com/?s=ggplot2">ggplot2</a>, <a title="Boxplots using lattice and ggplot2 tutorials" href="http://www.r-bloggers.com/?s=boxplot">Boxplots</a>, <a title="Maps and gis" href="http://www.r-bloggers.com/?s=map">maps</a>, <a title="Animation in R" href="http://www.r-bloggers.com/?s=animation">animation</a>), programming (<a title="RStudio IDE for R" href="http://www.r-bloggers.com/?s=RStudio">RStudio</a>, <a title="Sweave and literate programming" href="http://www.r-bloggers.com/?s=sweave">Sweave</a>, <a title="LaTeX in R" href="http://www.r-bloggers.com/?s=LaTeX">LaTeX</a>, <a title="SQL and databases" href="http://www.r-bloggers.com/?s=SQL">SQL</a>, <a title="Eclipse IDE for R" href="http://www.r-bloggers.com/?s=eclipse">Eclipse</a>, <a title="git and github, Version Control System" href="http://www.r-bloggers.com/?s=git">git</a>, <a title="Large data in R using Hadoop" href="http://www.r-bloggers.com/?s=hadoop">hadoop</a>, <a title="Web Scraping of google, facebook, yahoo, twitter and more using R" href="http://www.r-bloggers.com/?s=Web+Scraping">Web Scraping</a>) statistics (<a title="Regressions and ANOVA analysis tutorials" href="http://www.r-bloggers.com/?s=regression">regression</a>, <a title="principal component analysis tutorial" href="http://www.r-bloggers.com/?s=PCA">PCA</a>, <a title="Time series" href="http://www.r-bloggers.com/?s=time+series">time series</a>,<a title="ecdf" href="http://www.r-bloggers.com/?s=ecdf">ecdf</a>, <a title="finance trading" href="http://www.r-bloggers.com/?s=trading">trading</a>) and more...
</div></p>]]></content:encoded>
			<wfw:commentRss>http://www.r-bloggers.com/two-way-cran/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rasterVis</title>
		<link>http://www.r-bloggers.com/rastervis/</link>
		<comments>http://www.r-bloggers.com/rastervis/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 20:59:00 +0000</pubDate>
		<dc:creator>Oscar Perpiñán Lamigueiro</dc:creator>
				<category><![CDATA[R bloggers]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cran]]></category>
		<category><![CDATA[lattice]]></category>
		<category><![CDATA[levelplot]]></category>
		<category><![CDATA[R-english]]></category>
		<category><![CDATA[raster]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://procomun.wordpress.com/?p=756</guid>
		<description><![CDATA[The raster package defines classes and methods for spatial raster data access and manipulation. The new rasterVis package complements raster providing a set of methods for enhanced visualization and interaction. It is now at CRAN.
Several examples can ...]]></description>
			<content:encoded><![CDATA[<p class="syndicated-attribution"><div style="border: 1px solid; background: none repeat scroll 0 0 #EDEDED; margin: 1px; font-size: 12px;">
(This article was first published on  <strong><a href="http://procomun.wordpress.com/2011/07/06/rastervis/"> Omnia sunt Communia! » R-english</a></strong>, and kindly contributed to <a href="http://www.r-bloggers.com/">R-bloggers)</a>      
</div></p>
<p>The <a href="http://cran.r-project.org/web/packages/raster/index.html" ref="nofollow" target="_blank">raster</a> package defines classes and methods for spatial raster data access and manipulation. The new <a href="http://cran.r-roject.org/web/packages/rasterVis" ref="nofollow" target="_blank">rasterVis</a> package complements raster providing a set of methods for enhanced visualization and interaction. It is now at <a class="zem_slink" title="CRAN" href="http://cran.r-project.org" rel="homepage" ref="nofollow" target="_blank">CRAN</a>.</p>
<p>Several examples can be found at the <a href="http://rastervis.r-forge.r-project.org/" ref="nofollow" target="_blank">webpage of the project</a>.</p>
<p><img src="http://procomun.files.wordpress.com/2011/06/wpid-levelplot_layer11.png?w=640" alt="http://procomun.files.wordpress.com/2011/06/wpid-levelplot_layer11.png?w=640" width="640" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/procomun.wordpress.com/756/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/procomun.wordpress.com/756/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/procomun.wordpress.com/756/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/procomun.wordpress.com/756/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/procomun.wordpress.com/756/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/procomun.wordpress.com/756/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/procomun.wordpress.com/756/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/procomun.wordpress.com/756/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/procomun.wordpress.com/756/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/procomun.wordpress.com/756/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/procomun.wordpress.com/756/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/procomun.wordpress.com/756/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/procomun.wordpress.com/756/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/procomun.wordpress.com/756/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=procomun.wordpress.com&amp;blog=11887306&amp;post=756&amp;subd=procomun&amp;ref=&amp;feed=1" width="1" height="1" />
<p class="syndicated-attribution"><div style="border: 1px solid; background: none repeat scroll 0 0 #EDEDED; margin: 1px; font-size: 13px;">
<div style="text-align: center;">To <strong>leave a comment</strong> for the author, please follow the link and comment on his blog: <strong><a href="http://procomun.wordpress.com/2011/07/06/rastervis/"> Omnia sunt Communia! » R-english</a></strong>.</div>
<hr />
<a href="http://www.r-bloggers.com/">R-bloggers.com</a> offers <strong><a href="http://feedburner.google.com/fb/a/mailverify?uri=RBloggers">daily e-mail updates</a></strong> about <a title="The R Project for Statistical Computing" href="http://www.r-project.org/">R</a> news and <a title="R tutorials" href="http://www.r-bloggers.com/?s=tutorial">tutorials</a> on topics such as: visualization (<a title="ggplot and ggplot2 tutorials" href="http://www.r-bloggers.com/?s=ggplot2">ggplot2</a>, <a title="Boxplots using lattice and ggplot2 tutorials" href="http://www.r-bloggers.com/?s=boxplot">Boxplots</a>, <a title="Maps and gis" href="http://www.r-bloggers.com/?s=map">maps</a>, <a title="Animation in R" href="http://www.r-bloggers.com/?s=animation">animation</a>), programming (<a title="RStudio IDE for R" href="http://www.r-bloggers.com/?s=RStudio">RStudio</a>, <a title="Sweave and literate programming" href="http://www.r-bloggers.com/?s=sweave">Sweave</a>, <a title="LaTeX in R" href="http://www.r-bloggers.com/?s=LaTeX">LaTeX</a>, <a title="SQL and databases" href="http://www.r-bloggers.com/?s=SQL">SQL</a>, <a title="Eclipse IDE for R" href="http://www.r-bloggers.com/?s=eclipse">Eclipse</a>, <a title="git and github, Version Control System" href="http://www.r-bloggers.com/?s=git">git</a>, <a title="Large data in R using Hadoop" href="http://www.r-bloggers.com/?s=hadoop">hadoop</a>, <a title="Web Scraping of google, facebook, yahoo, twitter and more using R" href="http://www.r-bloggers.com/?s=Web+Scraping">Web Scraping</a>) statistics (<a title="Regressions and ANOVA analysis tutorials" href="http://www.r-bloggers.com/?s=regression">regression</a>, <a title="principal component analysis tutorial" href="http://www.r-bloggers.com/?s=PCA">PCA</a>, <a title="Time series" href="http://www.r-bloggers.com/?s=time+series">time series</a>,<a title="ecdf" href="http://www.r-bloggers.com/?s=ecdf">ecdf</a>, <a title="finance trading" href="http://www.r-bloggers.com/?s=trading">trading</a>) and more...
</div></p>]]></content:encoded>
			<wfw:commentRss>http://www.r-bloggers.com/rastervis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
<enclosure url="http://procomun.files.wordpress.com/2011/06/wpid-levelplot_layer11.png" length="" type="" />
		</item>
		<item>
		<title>solaR 0.24 at CRAN</title>
		<link>http://www.r-bloggers.com/solar-0-24-at-cran/</link>
		<comments>http://www.r-bloggers.com/solar-0-24-at-cran/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 14:52:00 +0000</pubDate>
		<dc:creator>Oscar Perpiñán Lamigueiro</dc:creator>
				<category><![CDATA[R bloggers]]></category>
		<category><![CDATA[cran]]></category>
		<category><![CDATA[memoir]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[R-english]]></category>
		<category><![CDATA[R-Forge]]></category>
		<category><![CDATA[siar]]></category>
		<category><![CDATA[solar]]></category>

		<guid isPermaLink="false">http://procomun.wordpress.com/?p=728</guid>
		<description><![CDATA[The version 0.24 of solaR is at CRAN and R-Forge. Some days before the 0.23 version was uploaded, but I had to make a quick fix to readMAPA: the url of http://www.mapa.es/siar has been changed to http://www.marm.es/siar. Moreover, this function has been renamed to readSIAR, although it is still available as readMAPA. Consequently the mode [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=procomun.wordpress.com&#38;blog=11887306&#38;post=728&#38;subd=procomun&#38;ref=&#38;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="syndicated-attribution"><div style="border: 1px solid; background: none repeat scroll 0 0 #EDEDED; margin: 1px; font-size: 12px;">
(This article was first published on  <strong><a href="http://procomun.wordpress.com/2011/06/17/solar-0-24-at-cran/"> Omnia sunt Communia! » R-english</a></strong>, and kindly contributed to <a href="http://www.r-bloggers.com/">R-bloggers)</a>      
</div></p>
<p>The version 0.24 of solaR is at <a href="http://cran.r-project.org/web/packages/solaR" ref="nofollow" target="_blank">CRAN</a> and <a href="http://solar.r-forge.r-project.org" ref="nofollow" target="_blank">R-Forge</a>. Some days before the 0.23 version was uploaded, but I had to make a quick fix to <code>readMAPA</code>: the url of http://www.mapa.es/siar has been changed to   <a href="http://www.marm.es/siar" ref="nofollow" target="_blank">http://www.marm.es/siar</a>. Moreover, this function has been renamed to <code>readSIAR</code>, although it is still available as <code>readMAPA</code>. Consequently the mode <code>modeRad</code>&#8216;mapa&#8217;= is now deprecated and renamed to  <code>modeRad</code>&#8216;siar&#8217;=. </p>
<p> Besides, the arguments <code>prom</code>, <code>mapa</code>, <code>bd</code> and <code>bdI</code> of <code>calcG0</code>, <code>calcGef</code>, <code>prodGCPV</code> and <code>prodPVPS</code> have been unified in the new <code>dataRad</code> argument. Those arguments are now deprecated although still available.  </p>
<p> The previous solaR 0.23 fixed a bug in <code>fInclin</code> when <code>horizBright=FALSE</code>, and: </p>
<ul>
<li>Four sun-geometry methods are now available. </li>
<li><code>ThzS</code>, <code>AlS</code> and <code>AzS</code> are not set to NA outside sunrise-sunset period. </li>
<li><code>fInclin</code> and <code>calcGef</code> gain a new argument, <code>HCPV</code>, for High Concentrated Photovoltaics. </li>
<li>A bug in <code>fSolI</code> and <code>fTheta</code> when lat=0 has been corrected. </li>
</ul>
<p> Last, the vignette has been reformated and now uses the <a href="http://www.ctan.org/tex-archive/macros/latex/contrib/memoir/" ref="nofollow" target="_blank">memoir</a> class of LaTeX. It is available <a href="http://cran.r-project.org/web/packages/solaR/vignettes/solaR.pdf" ref="nofollow" target="_blank">here</a>. </p>
</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/procomun.wordpress.com/728/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/procomun.wordpress.com/728/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/procomun.wordpress.com/728/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/procomun.wordpress.com/728/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/procomun.wordpress.com/728/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/procomun.wordpress.com/728/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/procomun.wordpress.com/728/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/procomun.wordpress.com/728/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/procomun.wordpress.com/728/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/procomun.wordpress.com/728/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/procomun.wordpress.com/728/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/procomun.wordpress.com/728/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/procomun.wordpress.com/728/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/procomun.wordpress.com/728/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=procomun.wordpress.com&amp;blog=11887306&amp;post=728&amp;subd=procomun&amp;ref=&amp;feed=1" width="1" height="1" />
<p class="syndicated-attribution"><div style="border: 1px solid; background: none repeat scroll 0 0 #EDEDED; margin: 1px; font-size: 13px;">
<div style="text-align: center;">To <strong>leave a comment</strong> for the author, please follow the link and comment on his blog: <strong><a href="http://procomun.wordpress.com/2011/06/17/solar-0-24-at-cran/"> Omnia sunt Communia! » R-english</a></strong>.</div>
<hr />
<a href="http://www.r-bloggers.com/">R-bloggers.com</a> offers <strong><a href="http://feedburner.google.com/fb/a/mailverify?uri=RBloggers">daily e-mail updates</a></strong> about <a title="The R Project for Statistical Computing" href="http://www.r-project.org/">R</a> news and <a title="R tutorials" href="http://www.r-bloggers.com/?s=tutorial">tutorials</a> on topics such as: visualization (<a title="ggplot and ggplot2 tutorials" href="http://www.r-bloggers.com/?s=ggplot2">ggplot2</a>, <a title="Boxplots using lattice and ggplot2 tutorials" href="http://www.r-bloggers.com/?s=boxplot">Boxplots</a>, <a title="Maps and gis" href="http://www.r-bloggers.com/?s=map">maps</a>, <a title="Animation in R" href="http://www.r-bloggers.com/?s=animation">animation</a>), programming (<a title="RStudio IDE for R" href="http://www.r-bloggers.com/?s=RStudio">RStudio</a>, <a title="Sweave and literate programming" href="http://www.r-bloggers.com/?s=sweave">Sweave</a>, <a title="LaTeX in R" href="http://www.r-bloggers.com/?s=LaTeX">LaTeX</a>, <a title="SQL and databases" href="http://www.r-bloggers.com/?s=SQL">SQL</a>, <a title="Eclipse IDE for R" href="http://www.r-bloggers.com/?s=eclipse">Eclipse</a>, <a title="git and github, Version Control System" href="http://www.r-bloggers.com/?s=git">git</a>, <a title="Large data in R using Hadoop" href="http://www.r-bloggers.com/?s=hadoop">hadoop</a>, <a title="Web Scraping of google, facebook, yahoo, twitter and more using R" href="http://www.r-bloggers.com/?s=Web+Scraping">Web Scraping</a>) statistics (<a title="Regressions and ANOVA analysis tutorials" href="http://www.r-bloggers.com/?s=regression">regression</a>, <a title="principal component analysis tutorial" href="http://www.r-bloggers.com/?s=PCA">PCA</a>, <a title="Time series" href="http://www.r-bloggers.com/?s=time+series">time series</a>,<a title="ecdf" href="http://www.r-bloggers.com/?s=ecdf">ecdf</a>, <a title="finance trading" href="http://www.r-bloggers.com/?s=trading">trading</a>) and more...
</div></p>]]></content:encoded>
			<wfw:commentRss>http://www.r-bloggers.com/solar-0-24-at-cran/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="" length="" type="" />
		</item>
		<item>
		<title>another look at CRAN Task Views</title>
		<link>http://www.r-bloggers.com/another-look-at-cran-task-views/</link>
		<comments>http://www.r-bloggers.com/another-look-at-cran-task-views/#comments</comments>
		<pubDate>Thu, 26 May 2011 15:38:00 +0000</pubDate>
		<dc:creator>Nick Horton</dc:creator>
				<category><![CDATA[R bloggers]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cran]]></category>
		<category><![CDATA[libraries in R]]></category>
		<category><![CDATA[R packages]]></category>
		<category><![CDATA[Task Views]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[We've been impressed with how helpful the CRAN Task Views are in guiding us in R as we wend our way through the huge number of add-on packages (3021 as of May, 2011).  These are web pages that are maintained by volunteers with expertise in a specified ...]]></description>
			<content:encoded><![CDATA[<p class="syndicated-attribution"><div style="border: 1px solid; background: none repeat scroll 0 0 #EDEDED; margin: 1px; font-size: 12px;">
(This article was first published on  <strong><a href="http://feedproxy.google.com/~r/SASandR/~3/SWaAIXbcoeg/another-look-at-cran-task-views.html"> SAS and R</a></strong>, and kindly contributed to <a href="http://www.r-bloggers.com/">R-bloggers)</a>      
</div></p>
We've been impressed with how helpful the <a href="http://cran.r-project.org/web/views/" ref="nofollow" target="_blank">CRAN Task Views</a> are in guiding us in R as we wend our way through the huge number of add-on packages (3021 as of May, 2011).  These are web pages that are maintained by volunteers with expertise in a specified area.  The maintainers provide annotated guidance to routines and packages.  This is particularly helpful to track new packages or functionality (along with the <a href="http://cran.r-project.org/doc/FAQ/R-FAQ.html#What-mailing-lists-exist-for-R_003f" ref="nofollow" target="_blank">R-packages</a> relatively low volume mailing list and <a href="http://crantastic.org/" ref="nofollow" target="_blank">Crantastic</a>).<br /><br />As an example, we consider the <a href="http://cran.r-project.org/web/views/Finance.html" ref="nofollow" target="_blank">Empirical Finance</a> task view, which is maintained by Dirk Eddelbuettel.  This includes description of standard regression models, time series, finance, risk management, data and time management as well as books with packages.  Of particular help are the related links, including 6 other task views (Econometrics, Multivariate, Optimization, Robust, Social Sciences and Time Series).<br /><br />Reviewing the Task View can help users to get up to speed in a given area, and we commend the R-core for this creative response to the growth of packages.<br /><br />As of this week, the following Task Views were available:<br />Bayesian  (Bayesian Inference),<br />ChemPhys  (Chemometrics and Computational Physics),<br />ClinicalTrials  (Clinical Trial Design, Monitoring, and Analysis),<br />Cluster  (Cluster Analysis & Finite Mixture Models),<br />Distributions  (Probability Distributions),<br />Econometrics  (Computational Econometrics),<br />Environmetrics  (Analysis of Ecological and Environmental Data),<br />ExperimentalDesign  (Design of Experiments (DoE) & Analysis of Experimental Data),<br />Finance  (Empirical Finance),<br />Genetics  (Statistical Genetics),<br />Graphics  (Graphic Displays & Dynamic Graphics & Graphic Devices & Visualization),<br />gR  (gRaphical Models in R),<br />HighPerformanceComputing  (High-Performance and Parallel Computing with R),<br />MachineLearning  (Machine Learning & Statistical Learning),<br />MedicalImaging  (Medical Image Analysis),<br />Multivariate  (Multivariate Statistics),<br />NaturalLanguageProcessing  (Natural Language Processing),<br />OfficialStatistics  (Official Statistics & Survey Methodology),<br />Optimization  (Optimization and Mathematical Programming),<br />Pharmacokinetics  (Analysis of Pharmacokinetic Data),<br />Phylogenetics  (Phylogenetics, Especially Comparative Methods),<br />Psychometrics  (Psychometric Models and Methods),<br />ReproducibleResearch  (Reproducible Research),<br />Robust  (Robust Statistical Methods),<br />SocialSciences  (Statistics for the Social Sciences),<br />Spatial  (Analysis of Spatial Data),<br />Survival  (Survival Analysis)<br />TimeSeries  (Time Series Analysis)<br /><br />Are there other areas where a new task view would be useful?  Feel free to comment with your thoughts and suggestions.<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1275149608391671670-3378841863624269555?l=sas-and-r.blogspot.com' alt='' /></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/SASandR?a=SWaAIXbcoeg:R630SQUSL0c:yIl2AUoC8zA" ref="nofollow" target="_blank"><img src="http://feeds.feedburner.com/~ff/SASandR?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SASandR?a=SWaAIXbcoeg:R630SQUSL0c:qj6IDK7rITs" ref="nofollow" target="_blank"><img src="http://feeds.feedburner.com/~ff/SASandR?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SASandR?a=SWaAIXbcoeg:R630SQUSL0c:63t7Ie-LG7Y" ref="nofollow" target="_blank"><img src="http://feeds.feedburner.com/~ff/SASandR?d=63t7Ie-LG7Y" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SASandR?a=SWaAIXbcoeg:R630SQUSL0c:F7zBnMyn0Lo" ref="nofollow" target="_blank"><img src="http://feeds.feedburner.com/~ff/SASandR?i=SWaAIXbcoeg:R630SQUSL0c:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SASandR?a=SWaAIXbcoeg:R630SQUSL0c:gIN9vFwOqvQ" ref="nofollow" target="_blank"><img src="http://feeds.feedburner.com/~ff/SASandR?i=SWaAIXbcoeg:R630SQUSL0c:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/SASandR/~4/SWaAIXbcoeg" height="1" width="1"/>
<p class="syndicated-attribution"><div style="border: 1px solid; background: none repeat scroll 0 0 #EDEDED; margin: 1px; font-size: 13px;">
<div style="text-align: center;">To <strong>leave a comment</strong> for the author, please follow the link and comment on his blog: <strong><a href="http://feedproxy.google.com/~r/SASandR/~3/SWaAIXbcoeg/another-look-at-cran-task-views.html"> SAS and R</a></strong>.</div>
<hr />
<a href="http://www.r-bloggers.com/">R-bloggers.com</a> offers <strong><a href="http://feedburner.google.com/fb/a/mailverify?uri=RBloggers">daily e-mail updates</a></strong> about <a title="The R Project for Statistical Computing" href="http://www.r-project.org/">R</a> news and <a title="R tutorials" href="http://www.r-bloggers.com/?s=tutorial">tutorials</a> on topics such as: visualization (<a title="ggplot and ggplot2 tutorials" href="http://www.r-bloggers.com/?s=ggplot2">ggplot2</a>, <a title="Boxplots using lattice and ggplot2 tutorials" href="http://www.r-bloggers.com/?s=boxplot">Boxplots</a>, <a title="Maps and gis" href="http://www.r-bloggers.com/?s=map">maps</a>, <a title="Animation in R" href="http://www.r-bloggers.com/?s=animation">animation</a>), programming (<a title="RStudio IDE for R" href="http://www.r-bloggers.com/?s=RStudio">RStudio</a>, <a title="Sweave and literate programming" href="http://www.r-bloggers.com/?s=sweave">Sweave</a>, <a title="LaTeX in R" href="http://www.r-bloggers.com/?s=LaTeX">LaTeX</a>, <a title="SQL and databases" href="http://www.r-bloggers.com/?s=SQL">SQL</a>, <a title="Eclipse IDE for R" href="http://www.r-bloggers.com/?s=eclipse">Eclipse</a>, <a title="git and github, Version Control System" href="http://www.r-bloggers.com/?s=git">git</a>, <a title="Large data in R using Hadoop" href="http://www.r-bloggers.com/?s=hadoop">hadoop</a>, <a title="Web Scraping of google, facebook, yahoo, twitter and more using R" href="http://www.r-bloggers.com/?s=Web+Scraping">Web Scraping</a>) statistics (<a title="Regressions and ANOVA analysis tutorials" href="http://www.r-bloggers.com/?s=regression">regression</a>, <a title="principal component analysis tutorial" href="http://www.r-bloggers.com/?s=PCA">PCA</a>, <a title="Time series" href="http://www.r-bloggers.com/?s=time+series">time series</a>,<a title="ecdf" href="http://www.r-bloggers.com/?s=ecdf">ecdf</a>, <a title="finance trading" href="http://www.r-bloggers.com/?s=trading">trading</a>) and more...
</div></p>]]></content:encoded>
			<wfw:commentRss>http://www.r-bloggers.com/another-look-at-cran-task-views/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Importing RDF input in R for analysis</title>
		<link>http://www.r-bloggers.com/importing-rdf-input-in-r-for-analysis/</link>
		<comments>http://www.r-bloggers.com/importing-rdf-input-in-r-for-analysis/#comments</comments>
		<pubDate>Thu, 28 Apr 2011 16:32:00 +0000</pubDate>
		<dc:creator>Egon Willighagen</dc:creator>
				<category><![CDATA[R bloggers]]></category>
		<category><![CDATA[chembl]]></category>
		<category><![CDATA[cran]]></category>
		<category><![CDATA[molecular chemometrics]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[RDF]]></category>
		<category><![CDATA[SPARQL]]></category>
		<category><![CDATA[statistics]]></category>

		<guid isPermaLink="false">http://www.r-bloggers.com/?guid=2a2d70610f489642dd3d4b6d23b5f7dd</guid>
		<description><![CDATA[August last year I asked on BioStar about how to import RDF into the R statistical package and at the time nothing seemed existing. Over the past few weeks I ported code I wrote for Bioclipse to create the rrdf package for R, which is now available fro...]]></description>
			<content:encoded><![CDATA[<p class="syndicated-attribution"><div style="border: 1px solid; background: none repeat scroll 0 0 #EDEDED; margin: 1px; font-size: 12px;">
(This article was first published on  <strong><a href="http://chem-bla-ics.blogspot.com/2011/04/importing-rdf-input-in-r-for-analysis.html"> chem-bla-ics</a></strong>, and kindly contributed to <a href="http://www.r-bloggers.com/">R-bloggers)</a>      
</div></p>
August last year I asked on BioStar about <a href="http://biostar.stackexchange.com/questions/2069/how-do-i-import-rdf-data-into-r" ref="nofollow" target="_blank">how to import RDF into the R statistical package</a> and at the time nothing seemed existing. Over the past few weeks I ported code I wrote for <a href="http://www.bioclipse.net/" ref="nofollow" target="_blank">Bioclipse</a> to create the <a href="http://cran.r-project.org/web/packages/rrdf/index.html" ref="nofollow" target="_blank">rrdf package</a> for <a href="http://www.r-project.org/" ref="nofollow" target="_blank">R</a>, which is now available from <a href="http://cran.r-project.org/" ref="nofollow" target="_blank">CRAN</a>. RDF can be loaded from RDF/XML, Notation3, and Turtle files, using <a href="http://jena.sourceforge.net/" ref="nofollow" target="_blank">Jena</a>, and read data can be queried using <a href="http://www.w3.org/TR/rdf-sparql-query/" ref="nofollow" target="_blank">SPARQL</a>. I have not yet ported the remote SPARQL functionality we used in <a href="http://www.jbiomedsem.com/content/2/S1/S6" ref="nofollow" target="_blank">our recent paper</a>, but that will make a nice alternative to&nbsp;<a href="http://chembl.blogspot.com/2011/04/access-to-chembl-through-pipeline-pilot.html" ref="nofollow" target="_blank">using ChEMBL data in Pipeline Pilot</a>&nbsp;or <a href="http://www.jbiomedsem.com/content/2/S1/S6" ref="nofollow" target="_blank">in Bioclipse</a> :)<div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17889588-5491738068007145827?l=chem-bla-ics.blogspot.com' alt='' /></div>
<p class="syndicated-attribution"><div style="border: 1px solid; background: none repeat scroll 0 0 #EDEDED; margin: 1px; font-size: 13px;">
<div style="text-align: center;">To <strong>leave a comment</strong> for the author, please follow the link and comment on his blog: <strong><a href="http://chem-bla-ics.blogspot.com/2011/04/importing-rdf-input-in-r-for-analysis.html"> chem-bla-ics</a></strong>.</div>
<hr />
<a href="http://www.r-bloggers.com/">R-bloggers.com</a> offers <strong><a href="http://feedburner.google.com/fb/a/mailverify?uri=RBloggers">daily e-mail updates</a></strong> about <a title="The R Project for Statistical Computing" href="http://www.r-project.org/">R</a> news and <a title="R tutorials" href="http://www.r-bloggers.com/?s=tutorial">tutorials</a> on topics such as: visualization (<a title="ggplot and ggplot2 tutorials" href="http://www.r-bloggers.com/?s=ggplot2">ggplot2</a>, <a title="Boxplots using lattice and ggplot2 tutorials" href="http://www.r-bloggers.com/?s=boxplot">Boxplots</a>, <a title="Maps and gis" href="http://www.r-bloggers.com/?s=map">maps</a>, <a title="Animation in R" href="http://www.r-bloggers.com/?s=animation">animation</a>), programming (<a title="RStudio IDE for R" href="http://www.r-bloggers.com/?s=RStudio">RStudio</a>, <a title="Sweave and literate programming" href="http://www.r-bloggers.com/?s=sweave">Sweave</a>, <a title="LaTeX in R" href="http://www.r-bloggers.com/?s=LaTeX">LaTeX</a>, <a title="SQL and databases" href="http://www.r-bloggers.com/?s=SQL">SQL</a>, <a title="Eclipse IDE for R" href="http://www.r-bloggers.com/?s=eclipse">Eclipse</a>, <a title="git and github, Version Control System" href="http://www.r-bloggers.com/?s=git">git</a>, <a title="Large data in R using Hadoop" href="http://www.r-bloggers.com/?s=hadoop">hadoop</a>, <a title="Web Scraping of google, facebook, yahoo, twitter and more using R" href="http://www.r-bloggers.com/?s=Web+Scraping">Web Scraping</a>) statistics (<a title="Regressions and ANOVA analysis tutorials" href="http://www.r-bloggers.com/?s=regression">regression</a>, <a title="principal component analysis tutorial" href="http://www.r-bloggers.com/?s=PCA">PCA</a>, <a title="Time series" href="http://www.r-bloggers.com/?s=time+series">time series</a>,<a title="ecdf" href="http://www.r-bloggers.com/?s=ecdf">ecdf</a>, <a title="finance trading" href="http://www.r-bloggers.com/?s=trading">trading</a>) and more...
</div></p>]]></content:encoded>
			<wfw:commentRss>http://www.r-bloggers.com/importing-rdf-input-in-r-for-analysis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exporting R graphics as LaTeX code &#8211; version 0.6.1 of the tikzDevice package is out</title>
		<link>http://www.r-bloggers.com/exporting-r-graphics-as-latex-code-version-0-6-1-of-the-tikzdevice-package-is-out/</link>
		<comments>http://www.r-bloggers.com/exporting-r-graphics-as-latex-code-version-0-6-1-of-the-tikzdevice-package-is-out/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 09:31:31 +0000</pubDate>
		<dc:creator>Tal Galili</dc:creator>
				<category><![CDATA[R guest posts]]></category>
		<category><![CDATA[cran]]></category>
		<category><![CDATA[LaTex]]></category>
		<category><![CDATA[packages]]></category>
		<category><![CDATA[R]]></category>

		<guid isPermaLink="false">http://www.r-bloggers.com/?p=50272</guid>
		<description><![CDATA[(Guest post on R-bloggers by Charlie Sharpsteen) Cameron and I are pleased to announce version 0.6.0 of the tikzDevice package which should be available shortly at your local CRAN mirror! The tikzDevice makes it possible to export R graphics as LaTeX code that can be included in other documents or compiled into stand alone figures. The full power of LaTeX is available for typesetting text and mathematical expressions inside figures produced using the tikzDevice. Over 80 commits have occurred since the release of 0.5.3 which have added exciting new features to the device. The most important addition is 0.6.0 is that the XeLaTeX compiler is officially supported. Compared to the PdfTeX engine, XeTeX has native support for Unicode which we hope will make the package more useful for producing graphics that contain text in languages outside the ASCII symbol table. 0.6.0 also provides support for including raster imagry in graphics and polypath drawing which catches the `tikz()` graphics device up with recent developments in the R graphics engine. There have also been some significant changes under the hood. Our package has migrated to using Roxygen for function documentation&#8212;a move that was greatly facilitated by the Rd2roxygen package written by Yihui Xie and [...]]]></description>
			<content:encoded><![CDATA[<p>(Guest post on R-bloggers by Charlie Sharpsteen)</p>
<p>Cameron and I are pleased to announce version 0.6.0 of the tikzDevice<br />
package which should be available shortly at your local CRAN mirror!<br />
The tikzDevice makes it possible to export R graphics as LaTeX code<br />
that can be included in other documents or compiled into stand alone<br />
figures. The full power of LaTeX is available for typesetting text and<br />
mathematical expressions inside figures produced using the tikzDevice.</p>
<p>Over 80 commits have occurred since the release of 0.5.3 which have<br />
added exciting new features to the device. The most important addition<br />
is 0.6.0 is that the XeLaTeX compiler is officially supported.<br />
Compared to the PdfTeX engine, XeTeX has native support for Unicode<br />
which we hope will make the package more useful for producing graphics<br />
that contain text in languages outside the ASCII symbol table. 0.6.0<br />
also provides support for including raster imagry in graphics and<br />
polypath drawing which catches the `tikz()` graphics device up with<br />
recent developments in the R graphics engine.</p>
<p>There have also been some significant changes under the hood. Our<br />
package has migrated to using Roxygen for function documentation&#8212;a<br />
move that was greatly facilitated by the Rd2roxygen package written by<br />
Yihui Xie and Hadley Wickham. Our homebrewed testsuite has also been<br />
re-written on top of Hadley&#8217;s excellent test_that package.  Many<br />
thanks to the R community for writing great tools to support package<br />
development!</p>
<p>The full changelog is appended to this email. For a detailed diff of<br />
changes since 0.5.3, see:<br />
<a href="https://github.com/Sharpie/RTikZDevice/compare/0.5.3...master" target="_blank" ref="nofollow">https://github.com/Sharpie/RTikZDevice/compare/0.5.3&#8230;master</a></p>
<p>With 80 commits, it is likely we introduced some exciting new bugs.<br />
Bug reports are welcomed at the GitHub issue tracker:</p>
<p><a href="https://github.com/Sharpie/RTikZDevice/issues" target="_blank" ref="nofollow">https://github.com/Sharpie/RTikZDevice/issues</a></p>
<p>The tikzDevice also has a mailing list provided by R-Forge:</p>
<p>tikzdevice-bugs @at@ <a href="http://lists.r-forge.r-project.org/" target="_blank" ref="nofollow">lists.r-forge.r-project.org</a></p>
<p>Which is also accessible via Google Groups:</p>
<p><a href="https://groups.google.com/forum/#!forum/tikzdevice" target="_blank" ref="nofollow">https://groups.google.com/forum/#!forum/tikzdevice</a></p>
<p>A rough roadmap for future package development can be found at:</p>
<p><a href="https://github.com/Sharpie/RTikZDevice/wiki/Roadmap" target="_blank" ref="nofollow">https://github.com/Sharpie/RTikZDevice/wiki/Roadmap</a></p>
<p>Commentary and discussion is welcomed in the mailing list, patches<br />
containing bugfixes or features are welcomed on the issue tracker.</p>
<p>-Charlie</p>
<p>&#8212;</p>
<p>### Version: 0.6.1<br />
Released: 4-14-2011<br />
&#8212;<br />
#### Bug Fixes<br />
- Fixed a bug where `tikz` was not applying background color to the plot<br />
 canvas.<br />
- Fixed a Vignette bug caused by an incorrect merge that was breaking the CRAN<br />
 build.</p>
<p>&#8212;<br />
### Version: 0.6.0<br />
&#8212;<br />
#### New Features<br />
- Unicode Support!!!! XeLaTeX may now be used calculate metrics and widths for<br />
Unicode characters. PdfLaTeX remains the default LaTeX compiler, but this may<br />
be changed by setting the global option `tikzDefaultEngine` to `xetex`.</p>
<p>- New global option `tikzXelatexPackages` which contains packages necessary to<br />
use unicode characters with xelatex.  Specifically, the fontspec and the<br />
xunicode packages as well as the xetex option to the preview package.</p>
<p>- New global option `tikzUnicodeMetricPackages` which contains the packages<br />
necessary to calculate metrics for multibyte unicode characters with xelatex.</p>
<p>- New function anyMultibyteUTF8Characters() which will check if the given<br />
string contains any multibyte unicode characters.  Exposed in the package<br />
namespace since it is general and may be useful in other applications.</p>
<p>- The TikZ device now fully supports the `Raster` graphics primitive that was<br />
added in R 2.11.0 and no longer throws &#8220;not implemented&#8221; warnings when this<br />
functionality is used. This is accompilshed by writing raster images to PNG<br />
files, `Rplots_ras#.png`, which are then included in the main TeX file<br />
`Rplots.tex`.</p>
<p>- The TikZ device now fully supports the `polypath` graphics primitive that was<br />
added in R 2.12.0 and no longer throws &#8220;not implemented&#8221; warnings when this<br />
functionality is used.</p>
<p>#### Bug Fixes</p>
<p>- Fixed a bug where the `lwd` parameter used to control line widths was<br />
declared by tikzDevice to be of type `int` when it is actually a `double`.<br />
This was causing line widths to be ignored or miscalculated. Many thanks to<br />
Baptiste Auguie for reporting this issue.</p>
<p>#### Depreciation Notices</p>
<p>- Versions of R &lt; 2.11.0 are no longer supported due to lack of required<br />
functions for handling Unicode strings.</p>
<p>#### Behind the Scenes</p>
<p>- New Makefile for executing common development tasks.</p>
<p>- Package documentation now handled by `roxygen`.  Many thanks to Hadley<br />
Wickham and Yihui Xie for the `Rd2roxygen` package which facilitated this<br />
switch.</p>
<p>- Package test suite completely overhauled and now based on Hadley Wickham&#8217;s<br />
`test_that` unit testing framework.</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.r-bloggers.com%2Fexporting-r-graphics-as-latex-code-version-0-6-1-of-the-tikzdevice-package-is-out%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:24px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.r-bloggers.com/exporting-r-graphics-as-latex-code-version-0-6-1-of-the-tikzdevice-package-is-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mixed models – Part 2: lme lmer</title>
		<link>http://www.r-bloggers.com/mixed-models-%e2%80%93-part-2-lme-lmer/</link>
		<comments>http://www.r-bloggers.com/mixed-models-%e2%80%93-part-2-lme-lmer/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 00:21:03 +0000</pubDate>
		<dc:creator>nzcoops</dc:creator>
				<category><![CDATA[R bloggers]]></category>
		<category><![CDATA[cran]]></category>
		<category><![CDATA[lme]]></category>
		<category><![CDATA[lmer]]></category>
		<category><![CDATA[mixed models]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mcfromnz.wordpress.com/?p=80</guid>
		<description><![CDATA[Getting more into mixed models, I&#8217;ve been playing around with both nlme::lme and lme4::lmer. http://tolstoy.newcastle.edu.au/R/e2/help/06/10/3345.html was quite a good post at explaining the differences, which from what I gather is largely performance based when using crossed or partially crossed models. In the models I am tinkering with at the moment I am noticing differences in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mcfromnz.wordpress.com&#38;blog=15988146&#38;post=80&#38;subd=mcfromnz&#38;ref=&#38;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="syndicated-attribution"><div style="border: 1px solid; background: none repeat scroll 0 0 #EDEDED; margin: 1px; font-size: 12px;">
(This article was first published on  <strong><a href="http://mcfromnz.wordpress.com/2011/02/16/mixed-models-lme-lmer/"> Matt's Stats n stuff » R</a></strong>, and kindly contributed to <a href="http://www.r-bloggers.com/">R-bloggers)</a>      
</div></p>
<p>Getting more into mixed models, I&#8217;ve been playing around with both nlme::lme and lme4::lmer. <a href="http://tolstoy.newcastle.edu.au/R/e2/help/06/10/3345.html" ref="nofollow" target="_blank">http://tolstoy.newcastle.edu.au/R/e2/help/06/10/3345.html</a> was quite a good post at explaining the differences, which from what I gather is largely performance based when using crossed or partially crossed models. </p>
<p>In the models I am tinkering with at the moment I am noticing differences in the standard deviations for the coefficients, which is alarming, but I&#8217;ll continue to dig around.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mcfromnz.wordpress.com/80/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mcfromnz.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mcfromnz.wordpress.com/80/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mcfromnz.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mcfromnz.wordpress.com/80/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mcfromnz.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mcfromnz.wordpress.com/80/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mcfromnz.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mcfromnz.wordpress.com/80/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mcfromnz.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mcfromnz.wordpress.com/80/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mcfromnz.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mcfromnz.wordpress.com/80/" ref="nofollow" target="_blank"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mcfromnz.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mcfromnz.wordpress.com&amp;blog=15988146&amp;post=80&amp;subd=mcfromnz&amp;ref=&amp;feed=1" width="1" height="1" />
<p class="syndicated-attribution"><div style="border: 1px solid; background: none repeat scroll 0 0 #EDEDED; margin: 1px; font-size: 13px;">
<div style="text-align: center;">To <strong>leave a comment</strong> for the author, please follow the link and comment on his blog: <strong><a href="http://mcfromnz.wordpress.com/2011/02/16/mixed-models-lme-lmer/"> Matt's Stats n stuff » R</a></strong>.</div>
<hr />
<a href="http://www.r-bloggers.com/">R-bloggers.com</a> offers <strong><a href="http://feedburner.google.com/fb/a/mailverify?uri=RBloggers">daily e-mail updates</a></strong> about <a title="The R Project for Statistical Computing" href="http://www.r-project.org/">R</a> news and <a title="R tutorials" href="http://www.r-bloggers.com/?s=tutorial">tutorials</a> on topics such as: visualization (<a title="ggplot and ggplot2 tutorials" href="http://www.r-bloggers.com/?s=ggplot2">ggplot2</a>, <a title="Boxplots using lattice and ggplot2 tutorials" href="http://www.r-bloggers.com/?s=boxplot">Boxplots</a>, <a title="Maps and gis" href="http://www.r-bloggers.com/?s=map">maps</a>, <a title="Animation in R" href="http://www.r-bloggers.com/?s=animation">animation</a>), programming (<a title="RStudio IDE for R" href="http://www.r-bloggers.com/?s=RStudio">RStudio</a>, <a title="Sweave and literate programming" href="http://www.r-bloggers.com/?s=sweave">Sweave</a>, <a title="LaTeX in R" href="http://www.r-bloggers.com/?s=LaTeX">LaTeX</a>, <a title="SQL and databases" href="http://www.r-bloggers.com/?s=SQL">SQL</a>, <a title="Eclipse IDE for R" href="http://www.r-bloggers.com/?s=eclipse">Eclipse</a>, <a title="git and github, Version Control System" href="http://www.r-bloggers.com/?s=git">git</a>, <a title="Large data in R using Hadoop" href="http://www.r-bloggers.com/?s=hadoop">hadoop</a>, <a title="Web Scraping of google, facebook, yahoo, twitter and more using R" href="http://www.r-bloggers.com/?s=Web+Scraping">Web Scraping</a>) statistics (<a title="Regressions and ANOVA analysis tutorials" href="http://www.r-bloggers.com/?s=regression">regression</a>, <a title="principal component analysis tutorial" href="http://www.r-bloggers.com/?s=PCA">PCA</a>, <a title="Time series" href="http://www.r-bloggers.com/?s=time+series">time series</a>,<a title="ecdf" href="http://www.r-bloggers.com/?s=ecdf">ecdf</a>, <a title="finance trading" href="http://www.r-bloggers.com/?s=trading">trading</a>) and more...
</div></p>]]></content:encoded>
			<wfw:commentRss>http://www.r-bloggers.com/mixed-models-%e2%80%93-part-2-lme-lmer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://1.gravatar.com/avatar/bd85c8549dde62fef20b331c62edd8dd?s=96&amp;amp;d=identicon&amp;amp;r=G" length="" type="" />
		</item>
	</channel>
</rss>

