<?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>ProgrammingR</title>
	<atom:link href="http://www.programmingr.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.programmingr.com</link>
	<description>Beginner to advanced resources for the R programming language</description>
	<lastBuildDate>Tue, 21 May 2013 21:56:09 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Global Indicator Analyses with R</title>
		<link>http://www.programmingr.com/content/global-indicator-analyses-with-r/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=global-indicator-analyses-with-r</link>
		<comments>http://www.programmingr.com/content/global-indicator-analyses-with-r/#comments</comments>
		<pubDate>Mon, 13 May 2013 12:45:24 +0000</pubDate>
		<dc:creator>bryan</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.programmingr.com/?p=927</guid>
		<description><![CDATA[<p>I was recently asked by a client to create a large number of &#8220;proof of concept&#8221; visualizations that illustrated the power of R for compiling and analyzing disparate datasets. The client was specifically interested in automated analyses of global data. A little research led me to the WDI package. The WDI package is a tool [...]</p><p>The post <a href="http://www.programmingr.com/content/global-indicator-analyses-with-r/">Global Indicator Analyses with R</a> appeared first on <a href="http://www.programmingr.com">ProgrammingR</a>.</p><div class='yarpp-related-rss'>

More like this:<ol>
<li><a href='http://www.programmingr.com/content/helpful-statistical-references/' rel='bookmark' title='Helpful statistical references'>Helpful statistical references</a></li>
<li><a href='http://www.programmingr.com/content/online-r-programming-resources/' rel='bookmark' title='Online R programming resources'>Online R programming resources</a></li>
<li><a href='http://www.programmingr.com/content/controlling-margins-and-axes-oma-and-mgp/' rel='bookmark' title='Controlling margins and axes with oma and mgp'>Controlling margins and axes with oma and mgp</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>I was recently asked by a client to create a large number of &#8220;proof of concept&#8221; visualizations that illustrated the power of R for compiling and analyzing disparate datasets. The client was specifically interested in automated analyses of global data. A little research led me to the <code>WDI</code> package.</p>
<p>The WDI package is a tool to &#8220;search, extract and format data from the World Bank&#8217;s World Development Indicators&#8221; (<a title="WDI Help" href="http://cran.r-project.org/web/packages/WDI/index.html">WDI help</a>). In essence, it is an R-based wrapper for the World Bank Economic Indicators Data API. When used in combination with the information on the <a title="World Bank data portal" href="http://data.worldbank.org/data-catalog/world-development-indicators">World Bank data portal</a> it provides easy access to thousands of global datapoints. </p>
<p>Here is an example use case that illustrates how simple and easy it is to use, especially with a little help from the <code>countrycode</code> and <code>ggplot2</code> packages:</p>
<pre class="brush: r; title: ; notranslate">
library(WDI)
library(ggplot2)
library(countrycode)

# Use the WDIsearch function to get a list of fertility rate indicators
indicatorMetaData &lt;- WDIsearch(&quot;Fertility rate&quot;, field=&quot;name&quot;, short=FALSE)

# Define a list of countries for which to pull data
countries &lt;- c(&quot;United States&quot;, &quot;Britain&quot;, &quot;Sweden&quot;, &quot;Germany&quot;)

# Convert the country names to iso2c format used in the World Bank data
iso2cNames &lt;- countrycode(countries, &quot;country.name&quot;, &quot;iso2c&quot;)

# Pull data for each countries for the first two fertility rate indicators, for the years 2001 to 2011
wdiData &lt;- WDI(iso2cNames, indicatorMetaData[1:2,1], start=2001, end=2011)

# Pull out indicator names
indicatorNames &lt;- indicatorMetaData[1:2, 1]

# Create trend charts for the first two indicators
for (indicatorName in indicatorNames) { 
  pl &lt;- ggplot(wdiData, aes(x=year, y=wdiData[,indicatorName], group=country, color=country))+
    geom_line(size=1)+
    scale_x_continuous(name=&quot;Year&quot;, breaks=c(unique(wdiData[,&quot;year&quot;])))+
    scale_y_continuous(name=indicatorName)+
    scale_linetype_discrete(name=&quot;Country&quot;)+
    theme(legend.title=element_blank())+
    ggtitle(paste(indicatorMetaData[indicatorMetaData[,1]==indicatorName, &quot;name&quot;], &quot;\n&quot;))
  ggsave(paste(indicatorName, &quot;.jpg&quot;, sep=&quot;&quot;), pl)
}
</pre>
<p><a href="http://www.programmingr.com/wp-content/uploads/2013/05/SP.DYN_.TFRT_.IN_-e1368447690806.jpg"><img src="http://www.programmingr.com/wp-content/uploads/2013/05/SP.DYN_.TFRT_.IN_-300x251.jpg" alt="WDI package visualization 1" width="300" height="251" class="aligncenter size-medium wp-image-928" /></a><a href="http://www.programmingr.com/wp-content/uploads/2013/05/SP.ADO_.TFRT_-e1368447750359.jpg"><img src="http://www.programmingr.com/wp-content/uploads/2013/05/SP.ADO_.TFRT_-300x251.jpg" alt="WDI package visualization 2" width="300" height="251" class="aligncenter size-medium wp-image-929" /></a></p>
<p>This code can be adapted to quickly pull and visualize many pieces of data. Even if you don&#8217;t have an analytic need for the WDI data, the ease of access and depth of information available via the <code>WDI</code> package make them perfect for creating toy examples for classes, presentations or blogs, or conveying the power and depth of available R packages.</p>
<div class="shr-publisher-927"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --><div class="wpInsert wpInsertInPostAd wpInsertBelow" style="margin: 0px;padding: 0px;font-style:italic"><br />
<strong>Looking for an R programmer or statistical programming consultant? ProgrammingR offers consulting services. For more information contact us at info@programmingr.com.</strong>
<br />
<br />
ProgrammingR offers two ways for you to stay up to date. To be notified when new articles and book reviews are posted, subscribe to the <a href="http://feeds.feedburner.com/ProgrammingR" title="ProgrammingR articles and book reviews feed">ProgrammingR articles feed</a>. To be notified when new R-based job listings are posted, subscribe to the <a href="http://feeds.feedburner.com/ProgrammingRjobs" title="ProgrammingR jobs feed">ProgrammingR jobs feed</a>. You may also want to <a href="http://www.programmingr.com/contact" title="Post an R consultant listing">post an R consultant listing</a>, <a href="http://www.programmingr.com/category/stype/r-consultants" title="ProgrammingR consultant listings">hire an R consultant</a>, or ask a question in the <a href="http://www.programmingr.com/forum/" title="ProgrammingR forums">forums</a>.
<br />
<br />
</div><p>The post <a href="http://www.programmingr.com/content/global-indicator-analyses-with-r/">Global Indicator Analyses with R</a> appeared first on <a href="http://www.programmingr.com">ProgrammingR</a>.</p><div class='yarpp-related-rss'>
<p>More like this:</p><ol>
<li><a href='http://www.programmingr.com/content/helpful-statistical-references/' rel='bookmark' title='Helpful statistical references'>Helpful statistical references</a></li>
<li><a href='http://www.programmingr.com/content/online-r-programming-resources/' rel='bookmark' title='Online R programming resources'>Online R programming resources</a></li>
<li><a href='http://www.programmingr.com/content/controlling-margins-and-axes-oma-and-mgp/' rel='bookmark' title='Controlling margins and axes with oma and mgp'>Controlling margins and axes with oma and mgp</a></li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.programmingr.com/content/global-indicator-analyses-with-r/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>QuantMarketplace.com</title>
		<link>http://www.programmingr.com/content/quantmarketplace-com/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=quantmarketplace-com</link>
		<comments>http://www.programmingr.com/content/quantmarketplace-com/#comments</comments>
		<pubDate>Tue, 30 Apr 2013 13:30:21 +0000</pubDate>
		<dc:creator>bryan</dc:creator>
				<category><![CDATA[Featured R consultants]]></category>
		<category><![CDATA[R consultants]]></category>

		<guid isPermaLink="false">http://www.programmingr.com/?p=916</guid>
		<description><![CDATA[<p>QuantMarketplace.com connects those in need of quantitative analysis or statistical consulting services for short to medium length projects with quantitative service providers. If you or your organization needs statistical or quantitative research expertise you can post a project description and receive bids from service providers. Service providers can register and post their profile so it as available for [...]</p><p>The post <a href="http://www.programmingr.com/content/quantmarketplace-com/">QuantMarketplace.com</a> appeared first on <a href="http://www.programmingr.com">ProgrammingR</a>.</p><div class='yarpp-related-rss yarpp-related-none'>
</div>
]]></description>
				<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p><a title="Quantitative freelance jobs" href="www.quantmarketplace.com">QuantMarketplace.com</a> connects those in need of quantitative analysis or statistical consulting services for short to medium length projects with quantitative service providers. If you or your organization needs statistical or quantitative research expertise you can post a project description and receive bids from service providers. Service providers can register and post their profile so it as available for searching by potential clients.</p>
<p><strong>Website: </strong><a title="Statistical consultants" href="www.quantmarketplace.com">www.quantmarketplace.com</a></p>
<div class="shr-publisher-916"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --><div class="wpInsert wpInsertInPostAd wpInsertBelow" style="margin: 0px;padding: 0px;font-style:italic"><br />
<strong>Looking for an R programmer or statistical programming consultant? ProgrammingR offers consulting services. For more information contact us at info@programmingr.com.</strong>
<br />
<br />
ProgrammingR offers two ways for you to stay up to date. To be notified when new articles and book reviews are posted, subscribe to the <a href="http://feeds.feedburner.com/ProgrammingR" title="ProgrammingR articles and book reviews feed">ProgrammingR articles feed</a>. To be notified when new R-based job listings are posted, subscribe to the <a href="http://feeds.feedburner.com/ProgrammingRjobs" title="ProgrammingR jobs feed">ProgrammingR jobs feed</a>. You may also want to <a href="http://www.programmingr.com/contact" title="Post an R consultant listing">post an R consultant listing</a>, <a href="http://www.programmingr.com/category/stype/r-consultants" title="ProgrammingR consultant listings">hire an R consultant</a>, or ask a question in the <a href="http://www.programmingr.com/forum/" title="ProgrammingR forums">forums</a>.
<br />
<br />
</div><p>The post <a href="http://www.programmingr.com/content/quantmarketplace-com/">QuantMarketplace.com</a> appeared first on <a href="http://www.programmingr.com">ProgrammingR</a>.</p><div class='yarpp-related-rss yarpp-related-none'>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.programmingr.com/content/quantmarketplace-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Statistical Programmer</title>
		<link>http://www.programmingr.com/content/statistical-programmer-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=statistical-programmer-2</link>
		<comments>http://www.programmingr.com/content/statistical-programmer-2/#comments</comments>
		<pubDate>Fri, 26 Apr 2013 13:50:01 +0000</pubDate>
		<dc:creator>bryan</dc:creator>
				<category><![CDATA[R job listings]]></category>

		<guid isPermaLink="false">http://www.programmingr.com/?p=910</guid>
		<description><![CDATA[<p>The position you are applying for is connected with a large bank initiative called Enterprise Target State Fraud Detection and Monitoring. Treasury Services is the largest wholesale bank in the world; and as a result, you have the rare opportunity to analyze the largest and most important transactional data set in existence anywhere. We use [...]</p><p>The post <a href="http://www.programmingr.com/content/statistical-programmer-2/">Statistical Programmer</a> appeared first on <a href="http://www.programmingr.com">ProgrammingR</a>.</p><div class='yarpp-related-rss'>

More like this:<ol>
<li><a href='http://www.programmingr.com/content/statistical-programmer/' rel='bookmark' title='Statistical Programmer'>Statistical Programmer</a></li>
<li><a href='http://www.programmingr.com/content/statistical-programmer-0/' rel='bookmark' title='Statistical Programmer'>Statistical Programmer</a></li>
<li><a href='http://www.programmingr.com/content/lead-statistical-programmer/' rel='bookmark' title='Lead statistical programmer'>Lead statistical programmer</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>The position you are applying for is connected with a large bank initiative called Enterprise Target State Fraud Detection and Monitoring. Treasury Services is the largest wholesale bank in the world; and as a result, you have the rare opportunity to analyze the largest and most important transactional data set in existence anywhere. We use state of the art statistical methods to analyze this data, identify potential fraud, and raise alerts. Big Data meets IT Security!</p>
<p>1. Work in a Hadoop-centric environment capable of handling massive data volume accessed through Map/Reduce parallel software in the “R” programming language<br />
2. Create statistical technology that identifies risky transactions which may be fraudulent<br />
3. Encourages (expects!) you to contribute both technology and business ideas on how  you should fundamentally use its Big Data environment to isolate fraud.<br />
4. Encourages (demands!) that you think beyond the project into a wider roll-out into a mass array of applications.<br />
5. Work in the context of the industry leaders in financial IT security. This team already used statistical methods to break encryption algorithms and analyze biometric authentication. Next, we will address fraud.<br />
Once this multi-year project is complete you will continue operating in the same environment with ownership over the systems you created, to modify, extend, and continue creating innovative capabilities. Your core application provides technology support for our flagship applications as well as others. You will expand upon your “R” expertise incorporating statistical methods and data analysis technology to identify new fraud patterns and quickly react when our adversaries strike.</p>
<p>As an developer, you will provide high quality technology solutions that address business needs by developing applications within mature technology environments. You will utilize programming methodologies, create “R” coding standards, procedures and techniques, while contributing to the technical code documentation.</p>
<p>You will participate in project planning sessions with project managers, business analysts and team members to analyze business requirements and outline the proposed IT solution. You will participate in design reviews and provide input to the design recommendations; incorporate security requirements into design; and provide input to information/data flow, and understand and comply with Project Life Cycle Methodology in all planning steps. You will also adhere to IT Control Policies throughout design, development and testing and incorporate Corporate Architectural Standards into application design specifications. Additionally, you will document the detailed application specifications, translate technical requirements into programmed application modules and develop/enhance software application modules. You will participate in code reviews and ensure that all solutions are aligned to pre-defined architectural specifications; identify/troubleshoot application code-related issues; and review and provide feedback to the final user documentation. You will research and resolve coding defects and document root cause.</p>
<p>Qualifications<br />
• A bachelor&#8217;s degree in Computer Science or equivalent experience<br />
• 5+ years experience with full development lifecycle from inception through implementation<br />
• Development experience with “R”<br />
• 3+ years experience working in both Unix or Linux<br />
• Experience with statistic techniques and data analysis<br />
• Excellent analytical, communication, organizational and problem-solving skills coupled with a strong work ethic<br />
• Strong planning and organizational skills<br />
• Solid design, coding, testing and debugging skills<br />
• Ability to translate business requirements into functional requirements documentation<br />
• Demonstrated ability to acquire technical knowledge and skills quickly<br />
• Ability to work in a team environment under aggressive timelines<br />
Familiarity with Enterprise Systems applications preferred</p>
<p>To apply, please contact: Yenejah Jemmott at <a href="mailto:yjemmott@ttiofusa.com">yjemmott@ttiofusa.com</a></p>
<div class="shr-publisher-910"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --><div class="wpInsert wpInsertInPostAd wpInsertBelow" style="margin: 0px;padding: 0px;font-style:italic"><br />
<strong>Looking for an R programmer or statistical programming consultant? ProgrammingR offers consulting services. For more information contact us at info@programmingr.com.</strong>
<br />
<br />
ProgrammingR offers two ways for you to stay up to date. To be notified when new articles and book reviews are posted, subscribe to the <a href="http://feeds.feedburner.com/ProgrammingR" title="ProgrammingR articles and book reviews feed">ProgrammingR articles feed</a>. To be notified when new R-based job listings are posted, subscribe to the <a href="http://feeds.feedburner.com/ProgrammingRjobs" title="ProgrammingR jobs feed">ProgrammingR jobs feed</a>. You may also want to <a href="http://www.programmingr.com/contact" title="Post an R consultant listing">post an R consultant listing</a>, <a href="http://www.programmingr.com/category/stype/r-consultants" title="ProgrammingR consultant listings">hire an R consultant</a>, or ask a question in the <a href="http://www.programmingr.com/forum/" title="ProgrammingR forums">forums</a>.
<br />
<br />
</div><p>The post <a href="http://www.programmingr.com/content/statistical-programmer-2/">Statistical Programmer</a> appeared first on <a href="http://www.programmingr.com">ProgrammingR</a>.</p><div class='yarpp-related-rss'>
<p>More like this:</p><ol>
<li><a href='http://www.programmingr.com/content/statistical-programmer/' rel='bookmark' title='Statistical Programmer'>Statistical Programmer</a></li>
<li><a href='http://www.programmingr.com/content/statistical-programmer-0/' rel='bookmark' title='Statistical Programmer'>Statistical Programmer</a></li>
<li><a href='http://www.programmingr.com/content/lead-statistical-programmer/' rel='bookmark' title='Lead statistical programmer'>Lead statistical programmer</a></li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.programmingr.com/content/statistical-programmer-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bayesian statistical programmer needed for 5 month contract project</title>
		<link>http://www.programmingr.com/content/bayesian-statistical-programmer-needed-for-5-month-contract-project/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=bayesian-statistical-programmer-needed-for-5-month-contract-project</link>
		<comments>http://www.programmingr.com/content/bayesian-statistical-programmer-needed-for-5-month-contract-project/#comments</comments>
		<pubDate>Wed, 03 Apr 2013 13:48:48 +0000</pubDate>
		<dc:creator>beth</dc:creator>
				<category><![CDATA[R job listings]]></category>

		<guid isPermaLink="false">http://www.programmingr.com/?p=899</guid>
		<description><![CDATA[<p>Marketing professor with short-term project (5+ hours) to program in R a Bayesian statistical model.  Must have experience with Bayesian Stats.  Need output in an excel file.  Experience with Netlogo preferred but not necessary. Please contact Rosanna Garcia at r.garcia@neu.edu. Looking for an R programmer or statistical programming consultant? ProgrammingR offers consulting services. For more information contact [...]</p><p>The post <a href="http://www.programmingr.com/content/bayesian-statistical-programmer-needed-for-5-month-contract-project/">Bayesian statistical programmer needed for 5 month contract project</a> appeared first on <a href="http://www.programmingr.com">ProgrammingR</a>.</p><div class='yarpp-related-rss'>

More like this:<ol>
<li><a href='http://www.programmingr.com/content/r-programmer-java-developer-6-month-contract-amsterdam/' rel='bookmark' title='R Programmer / Java Developer &#8211; 6 Month Contract &#8211; Amsterdam'>R Programmer / Java Developer &#8211; 6 Month Contract &#8211; Amsterdam</a></li>
<li><a href='http://www.programmingr.com/content/statistical-programmer/' rel='bookmark' title='Statistical Programmer'>Statistical Programmer</a></li>
<li><a href='http://www.programmingr.com/content/statistical-programmeranalyst-at-chanalytics-research/' rel='bookmark' title='Statistical Programmer/Analyst at Chanalytics Research'>Statistical Programmer/Analyst at Chanalytics Research</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Marketing professor with short-term project (5+ hours) to program in R a Bayesian statistical model.  Must have experience with Bayesian Stats.  Need output in an excel file.  Experience with Netlogo preferred but not necessary.</p>
<p>Please contact Rosanna Garcia at <a href="mailto:r.garcia@neu.edu">r.garcia@neu.edu</a>.</p>
<div class="shr-publisher-899"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --><div class="wpInsert wpInsertInPostAd wpInsertBelow" style="margin: 0px;padding: 0px;font-style:italic"><br />
<strong>Looking for an R programmer or statistical programming consultant? ProgrammingR offers consulting services. For more information contact us at info@programmingr.com.</strong>
<br />
<br />
ProgrammingR offers two ways for you to stay up to date. To be notified when new articles and book reviews are posted, subscribe to the <a href="http://feeds.feedburner.com/ProgrammingR" title="ProgrammingR articles and book reviews feed">ProgrammingR articles feed</a>. To be notified when new R-based job listings are posted, subscribe to the <a href="http://feeds.feedburner.com/ProgrammingRjobs" title="ProgrammingR jobs feed">ProgrammingR jobs feed</a>. You may also want to <a href="http://www.programmingr.com/contact" title="Post an R consultant listing">post an R consultant listing</a>, <a href="http://www.programmingr.com/category/stype/r-consultants" title="ProgrammingR consultant listings">hire an R consultant</a>, or ask a question in the <a href="http://www.programmingr.com/forum/" title="ProgrammingR forums">forums</a>.
<br />
<br />
</div><p>The post <a href="http://www.programmingr.com/content/bayesian-statistical-programmer-needed-for-5-month-contract-project/">Bayesian statistical programmer needed for 5 month contract project</a> appeared first on <a href="http://www.programmingr.com">ProgrammingR</a>.</p><div class='yarpp-related-rss'>
<p>More like this:</p><ol>
<li><a href='http://www.programmingr.com/content/r-programmer-java-developer-6-month-contract-amsterdam/' rel='bookmark' title='R Programmer / Java Developer &#8211; 6 Month Contract &#8211; Amsterdam'>R Programmer / Java Developer &#8211; 6 Month Contract &#8211; Amsterdam</a></li>
<li><a href='http://www.programmingr.com/content/statistical-programmer/' rel='bookmark' title='Statistical Programmer'>Statistical Programmer</a></li>
<li><a href='http://www.programmingr.com/content/statistical-programmeranalyst-at-chanalytics-research/' rel='bookmark' title='Statistical Programmer/Analyst at Chanalytics Research'>Statistical Programmer/Analyst at Chanalytics Research</a></li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.programmingr.com/content/bayesian-statistical-programmer-needed-for-5-month-contract-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Statistical Programmer/Analyst at Chanalytics Research</title>
		<link>http://www.programmingr.com/content/statistical-programmeranalyst-at-chanalytics-research/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=statistical-programmeranalyst-at-chanalytics-research</link>
		<comments>http://www.programmingr.com/content/statistical-programmeranalyst-at-chanalytics-research/#comments</comments>
		<pubDate>Wed, 23 Jan 2013 21:14:39 +0000</pubDate>
		<dc:creator>bryan</dc:creator>
				<category><![CDATA[R job listings]]></category>

		<guid isPermaLink="false">http://www.programmingr.com/?p=883</guid>
		<description><![CDATA[<p>Chanalytics Research is seeking to fill a 6-month contract R programmer position. This contract may be renewed or the position made permanent at the end of the contract. Job duties: - Write code in support of R-based statistical analyses and applications - Locate and acquire new clients - Write proposals - Research new R packages [...]</p><p>The post <a href="http://www.programmingr.com/content/statistical-programmeranalyst-at-chanalytics-research/">Statistical Programmer/Analyst at Chanalytics Research</a> appeared first on <a href="http://www.programmingr.com">ProgrammingR</a>.</p><div class='yarpp-related-rss'>

More like this:<ol>
<li><a href='http://www.programmingr.com/content/programmer-analyst/' rel='bookmark' title='Programmer Analyst'>Programmer Analyst</a></li>
<li><a href='http://www.programmingr.com/content/statistical-programmer/' rel='bookmark' title='Statistical Programmer'>Statistical Programmer</a></li>
<li><a href='http://www.programmingr.com/content/statistical-analyst/' rel='bookmark' title='Statistical Analyst'>Statistical Analyst</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Chanalytics Research is seeking to fill a 6-month contract R programmer position. This contract may be renewed or the position made permanent at the end of the contract.</p>
<h3>Job duties:</h3>
<p>- Write code in support of R-based statistical analyses and applications<br />
- Locate and acquire new clients<br />
- Write proposals<br />
- Research new R packages and statistical methods<br />
- Present deliverables to clients (via Web conferences and in-person meetings)<br />
- Other duties associated with automating and conducting statistical research</p>
<h3>Job details:</h3>
<p>- This is a remote/tele-work position; some travel may be required<br />
- Salary will be commensurate will experience and expertise</p>
<h3>The ideal candidate:</h3>
<p>The ideal candidate will be self-motivated and able to work independently. He or she will have at least 2 years experience developing R code for statistical analyses or applications. This position will interface with clients and will involve generating business, so the candidate must be comfortable assisting with sales contacts. The preferred candidate will also have experience in one of the following topical areas:</p>
<p>- Quantitative finance<br />
- Marketing research<br />
- Health research<br />
- Bayesian analysis<br />
- Big data analysis<br />
- The Semantic Web<br />
- Web design</p>
<h3>About Chanalytics Research:</h3>
<p>Chanalytics Research is a Durham, NC based research group that is internationally known as a provider of quality analytic and statistical programming solutions. Our clients come from a variety of industries, including marketing, finance, government and academics. We pride ourselves on being agile, adaptive and diligent.</p>
<p>To apply, please submit resumes with cover letters to <a href="mailto: consulting@chanalyticsresearch.com">consulting@chanalyticsresearch.com</a>.</p>
<div class="shr-publisher-883"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --><div class="wpInsert wpInsertInPostAd wpInsertBelow" style="margin: 0px;padding: 0px;font-style:italic"><br />
<strong>Looking for an R programmer or statistical programming consultant? ProgrammingR offers consulting services. For more information contact us at info@programmingr.com.</strong>
<br />
<br />
ProgrammingR offers two ways for you to stay up to date. To be notified when new articles and book reviews are posted, subscribe to the <a href="http://feeds.feedburner.com/ProgrammingR" title="ProgrammingR articles and book reviews feed">ProgrammingR articles feed</a>. To be notified when new R-based job listings are posted, subscribe to the <a href="http://feeds.feedburner.com/ProgrammingRjobs" title="ProgrammingR jobs feed">ProgrammingR jobs feed</a>. You may also want to <a href="http://www.programmingr.com/contact" title="Post an R consultant listing">post an R consultant listing</a>, <a href="http://www.programmingr.com/category/stype/r-consultants" title="ProgrammingR consultant listings">hire an R consultant</a>, or ask a question in the <a href="http://www.programmingr.com/forum/" title="ProgrammingR forums">forums</a>.
<br />
<br />
</div><p>The post <a href="http://www.programmingr.com/content/statistical-programmeranalyst-at-chanalytics-research/">Statistical Programmer/Analyst at Chanalytics Research</a> appeared first on <a href="http://www.programmingr.com">ProgrammingR</a>.</p><div class='yarpp-related-rss'>
<p>More like this:</p><ol>
<li><a href='http://www.programmingr.com/content/programmer-analyst/' rel='bookmark' title='Programmer Analyst'>Programmer Analyst</a></li>
<li><a href='http://www.programmingr.com/content/statistical-programmer/' rel='bookmark' title='Statistical Programmer'>Statistical Programmer</a></li>
<li><a href='http://www.programmingr.com/content/statistical-analyst/' rel='bookmark' title='Statistical Analyst'>Statistical Analyst</a></li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.programmingr.com/content/statistical-programmeranalyst-at-chanalytics-research/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R for Dummies Twitter Contest</title>
		<link>http://www.programmingr.com/content/r-for-dummies-twitter-contest/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=r-for-dummies-twitter-contest</link>
		<comments>http://www.programmingr.com/content/r-for-dummies-twitter-contest/#comments</comments>
		<pubDate>Wed, 23 Jan 2013 18:38:37 +0000</pubDate>
		<dc:creator>bryan</dc:creator>
				<category><![CDATA[Site news]]></category>

		<guid isPermaLink="false">http://www.programmingr.com/?p=876</guid>
		<description><![CDATA[<p>ProgrammingR recently featured a review of DeVries and Meys&#8217; R for Dummies. We were very impressed with the book and felt it would be a good addition to most R programmers&#8217; libraries. To that end, we&#8217;re giving away a fresh new copy to a random Twitter user who retweets our newest article covering SPARQL, the [...]</p><p>The post <a href="http://www.programmingr.com/content/r-for-dummies-twitter-contest/">R for Dummies Twitter Contest</a> appeared first on <a href="http://www.programmingr.com">ProgrammingR</a>.</p><div class='yarpp-related-rss yarpp-related-none'>
</div>
]]></description>
				<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p><a href="http://www.programmingr.com/wp-content/uploads/2013/01/twitter.png"><img class="alignright size-thumbnail wp-image-877" title="twitter" src="http://www.programmingr.com/wp-content/uploads/2013/01/twitter-150x150.png" alt="Twitter logo" width="150" height="150" /></a>ProgrammingR recently featured a review of DeVries and Meys&#8217;<a title="R for Dummies review" href="http://www.programmingr.com/content/r-for-dummies-de-vries-and-meys-2012/"> R for Dummies</a>. We were very impressed with the book and felt it would be a good addition to most R programmers&#8217; libraries. To that end, we&#8217;re giving away a fresh new copy to a random Twitter user who retweets our newest article covering <a title="SPARQL with R in less than 5 minutes" href="http://www.programmingr.com/content/sparql-with-r/">SPARQL, the Semantic Web and R</a>. To enter, you must retweet the exact tweet below (so that we can track your entry):</p>
<p><a href="https://twitter.com/ProgrammingR/statuses/294145982311063552">https://twitter.com/ProgrammingR/statuses/294145982311063552</a></p>
<p>We&#8217;ll select a random retweeter on 2/1/13. You must have retweeted the link above by 12PM EST on 1/31/13 and this type of contest must be legal in your area to be eligible.</p>
<div class="shr-publisher-876"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --><div class="wpInsert wpInsertInPostAd wpInsertBelow" style="margin: 0px;padding: 0px;font-style:italic"><br />
<strong>Looking for an R programmer or statistical programming consultant? ProgrammingR offers consulting services. For more information contact us at info@programmingr.com.</strong>
<br />
<br />
ProgrammingR offers two ways for you to stay up to date. To be notified when new articles and book reviews are posted, subscribe to the <a href="http://feeds.feedburner.com/ProgrammingR" title="ProgrammingR articles and book reviews feed">ProgrammingR articles feed</a>. To be notified when new R-based job listings are posted, subscribe to the <a href="http://feeds.feedburner.com/ProgrammingRjobs" title="ProgrammingR jobs feed">ProgrammingR jobs feed</a>. You may also want to <a href="http://www.programmingr.com/contact" title="Post an R consultant listing">post an R consultant listing</a>, <a href="http://www.programmingr.com/category/stype/r-consultants" title="ProgrammingR consultant listings">hire an R consultant</a>, or ask a question in the <a href="http://www.programmingr.com/forum/" title="ProgrammingR forums">forums</a>.
<br />
<br />
</div><p>The post <a href="http://www.programmingr.com/content/r-for-dummies-twitter-contest/">R for Dummies Twitter Contest</a> appeared first on <a href="http://www.programmingr.com">ProgrammingR</a>.</p><div class='yarpp-related-rss yarpp-related-none'>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.programmingr.com/content/r-for-dummies-twitter-contest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SPARQL with R in less than 5 minutes</title>
		<link>http://www.programmingr.com/content/sparql-with-r/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sparql-with-r</link>
		<comments>http://www.programmingr.com/content/sparql-with-r/#comments</comments>
		<pubDate>Wed, 23 Jan 2013 18:13:07 +0000</pubDate>
		<dc:creator>bryan</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.programmingr.com/?p=857</guid>
		<description><![CDATA[<p>In this article we&#8217;ll get up and running on the Semantic Web in less than 5 minutes using SPARQL with R. We&#8217;ll begin with a brief introduction to the Semantic Web then cover some simple steps for downloading and analyzing government data via a SPARQL query with the SPARQL R package. What is the Semantic [...]</p><p>The post <a href="http://www.programmingr.com/content/sparql-with-r/">SPARQL with R in less than 5 minutes</a> appeared first on <a href="http://www.programmingr.com">ProgrammingR</a>.</p><div class='yarpp-related-rss'>

More like this:<ol>
<li><a href='http://www.programmingr.com/content/helpful-statistical-references/' rel='bookmark' title='Helpful statistical references'>Helpful statistical references</a></li>
<li><a href='http://www.programmingr.com/content/online-r-programming-resources/' rel='bookmark' title='Online R programming resources'>Online R programming resources</a></li>
<li><a href='http://www.programmingr.com/content/positioning-charts-fig-and-fin/' rel='bookmark' title='Positioning charts with fig and fin'>Positioning charts with fig and fin</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>In this article we&#8217;ll get up and running on the Semantic Web in less than 5 minutes using SPARQL with R. We&#8217;ll begin with a brief introduction to the Semantic Web then cover some simple steps for downloading and analyzing government data via a SPARQL query with the SPARQL R package.</p>
<h3>What is the Semantic Web?</h3>
<p>To newcomers, the Semantic Web can sound mysterious and ominous. By most accounts, it&#8217;s the wave of the future, but it&#8217;s hard to pin down exactly what it is. This is in part because the Semantic Web has been evolving for some time but is just now beginning to take a  recognizable shape (DuCharme 2011).  Detailed definitions of the Semantic Web abound, but simply put, it is an attempt to structure the unstructured data on the Web and to formalize the standards that make that structure possible. In other words, it&#8217;s an attempt to create a data definition for the Web.</p>
<p>The primary method for accessing data made available on the Semantic Web is via SPARQL queries to a data provider&#8217;s endpoint. Endpoints are portals to data that a provider has made available for querying. This data is often published in <a title="RDF description" href="http://en.wikipedia.org/wiki/Resource_Description_Framework">RDF</a> format. If you&#8217;re familiar with using SQL to query a database, then the idea of using a query language (SPARQL) to access a structured database or data repository (the endpoint) should be common ground. The practice is also similar to webscraping an XML document with a known structure.</p>
<h3>The Semantic Web and R</h3>
<p>A primary goal of the Semantic Web movement is to enable machines and applications to interface using standardized data definitions. As the Semantic Web grows, it will be ripe for mining with statistical programs that already lend themselves to automation &#8211; such as R. To that end, let&#8217;s dive into a simple query that will illustrate 75% of what you&#8217;ll be doing on the Semantic Web.</p>
<h3>Accessing Data.gov datasets with SPARQL</h3>
<p>We&#8217;ll use data at the Data.gov endpoint for this example. Data.gov has a wide array of public data available, making this example generalizable to many other datasets. One of the key challenges of querying a Semantic Web resource is knowing what data is accessible. Sometimes the best way to find this out is to run a simple query with no filters that returns only a few results or to directly view the RDF. Fortunately, information on the data available via Data.gov has been cataloged on a <a title="Data.gov catalog" href="http://data-gov.tw.rpi.edu/wiki/Data.gov_Catalog">wiki hosted by Rensselaer.</a> We&#8217;ll use Dataset 1187 for this example. It&#8217;s simple and has interesting data &#8211; the total number of wildfires and acres burned per year, 1960-2008.</p>
<h3>R code</h3>
<p>Data.gov provides a <a title="Virtuoso" href="http://www.w3.org/2001/sw/wiki/OpenLink_Virtuoso">Virtuoso</a> endpoint <a title="Data.gov Virtuoso endpoint" href="http://services.data.gov/sparql">here</a>, which we could use to submit manual queries. But we want to automate this process, so we&#8217;ll use <a title="SPARQL R package on LinkedScience.prg" href="http://www.programmingr.com/topic/importing-famos-format/">Willem Robert van Hage and Tomi Kauppinen&#8217;s</a> <a title="SPARQL R package" href="http://cran.r-project.org/web/packages/SPARQL/index.html">SPARQL package</a> to access the endpoint.</p>
<pre class="brush: r; title: ; notranslate">
library(SPARQL) # SPARQL querying package
library(ggplot2)

# Step 1 - Set up preliminaries and define query
# Define the data.gov endpoint
endpoint &lt;- &quot;http://services.data.gov/sparql&quot;

# create query statement
query &lt;-
&quot;PREFIX  dgp1187: &lt;http://data-gov.tw.rpi.edu/vocab/p/1187/&gt;
SELECT ?ye ?fi ?ac
WHERE {
?s dgp1187:year ?ye .
?s dgp1187:fires ?fi .
?s dgp1187:acres ?ac .
}&quot;

# Step 2 - Use SPARQL package to submit query and save results to a data frame
qd &lt;- SPARQL(endpoint,query)
df &lt;- qd$results

# Step 3 - Prep for graphing

# Numbers are usually returned as characters, so convert to numeric and create a
# variable for &quot;average acres burned per fire&quot;
str(df)
df &lt;- as.data.frame(apply(df, 2, as.numeric))
str(df)

df$avgperfire &lt;- df$ac/df$fi

# Step 4 - Plot some data
ggplot(df, aes(x=ye, y=avgperfire, group=1)) +
geom_point() +
stat_smooth() +
scale_x_continuous(breaks=seq(1960, 2008, 5)) +
xlab(&quot;Year&quot;) +
ylab(&quot;Average acres burned per fire&quot;)

ggplot(df, aes(x=ye, y=fi, group=1)) +
geom_point() +
stat_smooth() +
scale_x_continuous(breaks=seq(1960, 2008, 5)) +
xlab(&quot;Year&quot;) +
ylab(&quot;Number of fires&quot;)

ggplot(df, aes(x=ye, y=ac, group=1)) +
geom_point() +
stat_smooth() +
scale_x_continuous(breaks=seq(1960, 2008, 5)) +
xlab(&quot;Year&quot;) +
ylab(&quot;Acres burned&quot;)

# In less than 5 mins we have written code to download just
# the data we need and have an interesting result to explore!
</pre>
<p>If you&#8217;re familiar with R, the only foreign code is that in Steps 1 and 2. There we define the location of the endpoint and write the SPARQL query. If you have experience with SQL, you&#8217;ll notice that SPARQL syntax is very similar. The most notable exception is that Semantic Web data is structured around chunks of data that contain three pieces of information. In Semantic Web terminology these three pieces of information as referred to as subjects, predicates and objects and together they are called &#8220;triples&#8221;. A SPARQL query returns pieces of these chunks of data; exactly which pieces are returned depends on the query. We have defined a prefix which establishes that everywhere we say &#8220;dgp1187:&#8221; we want it to know that we mean &#8220;&lt;http://data-gov.tw.rpi.edu/vocab/p/1187/&gt;&#8221;. This saves us from having to retype long URIs every time we need to reference them. URIs are used extensively on the Semantic Web, so this is a very helpful feature.</p>
<p>In English, our query says, &#8220;Give me the values for the attributes &#8220;fires&#8221;, &#8220;acres&#8221; and &#8220;year&#8221; wherever they are defined, and assign them to variables named &#8220;fi&#8221;, &#8220;ac&#8221; and &#8220;ye&#8221; respectively. Also fetch the location of the value in the data as a variable called ?s and merge the other data values by that variable.&#8221;</p>
<p>The last bit of the query is the closest we get to SPARQL magic. Because the variable ?s is present in each clause of the query, our fire, acres burned, and year data will be merged by that variable. This is somewhat analogous to saying, &#8220;Once you&#8217;ve found a row of data that contains information on the number of fires, also return the acres burned and year data from that row and list them on the same row in the new dataset.&#8221; (If the logic behind the query isn&#8217;t yet clear, or you&#8217;re ready to see how you can make this query more advanced or parsimonious, the text and web pages in the &#8220;References&#8221; and &#8220;Additional Information&#8221; sections at the end of this article are good resources for learning SPARQL.)</p>
<p>Once defined, we pass this query and endpoint information to the SPARQL function which returns an object with two values &#8211; a data frame of the new data and a list of namespaces. At this point, we&#8217;re concerned with the data frame, so we pull it out in the last line of Step 2.<a href="http://www.programmingr.com/wp-content/uploads/2013/01/AvgFiresPerYear.png"><img class="alignright size-full wp-image-864" title="AvgFiresPerYear" src="http://www.programmingr.com/wp-content/uploads/2013/01/AvgFiresPerYear.png" alt="Data.gov SPARQL example" width="428" height="256" /></a></p>
<p>From that point on we treat the data just like any other dataset. Running some quick graphs, we see that although the number of fires per year have decreased, the number of acres burned per fire and the number of acres burned per year increased considerably between 1975 and 2008. (Despite being born in 1975, I disavow any responsibility for this trend.)</p>
<h3>Summary</h3>
<p>In a few short minutes, using R and SPARQL, we wrote code to pull and do initial analyses on an interesting government dataset. Hopefully, the power of R for mining the Semantic Web is evident from this simple example. As more data becomes available in RDF format, automated solutions for mining and analyzing the Semantic Web will become more and more useful.</p>
<p>Reference:</p>
<p>DuCharme, Bob (2011-07-14). Learning SPARQL . OReilly Media.</p>
<p>Additional Information:</p>
<p><a title="Basic Data.gov query tutorial" href="http://data-gov.tw.rpi.edu/wiki/A_crash_course_in_SPARQL">Basic tutorial on querying Data.gov</a></p>
<p><a title="Data.gov query tutorial" href="http://data-gov.tw.rpi.edu/wiki/How_to_build_a_data-gov_demo">More detailed tutorial on querying Data.gov</a></p>
<div class="shr-publisher-857"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --><div class="wpInsert wpInsertInPostAd wpInsertBelow" style="margin: 0px;padding: 0px;font-style:italic"><br />
<strong>Looking for an R programmer or statistical programming consultant? ProgrammingR offers consulting services. For more information contact us at info@programmingr.com.</strong>
<br />
<br />
ProgrammingR offers two ways for you to stay up to date. To be notified when new articles and book reviews are posted, subscribe to the <a href="http://feeds.feedburner.com/ProgrammingR" title="ProgrammingR articles and book reviews feed">ProgrammingR articles feed</a>. To be notified when new R-based job listings are posted, subscribe to the <a href="http://feeds.feedburner.com/ProgrammingRjobs" title="ProgrammingR jobs feed">ProgrammingR jobs feed</a>. You may also want to <a href="http://www.programmingr.com/contact" title="Post an R consultant listing">post an R consultant listing</a>, <a href="http://www.programmingr.com/category/stype/r-consultants" title="ProgrammingR consultant listings">hire an R consultant</a>, or ask a question in the <a href="http://www.programmingr.com/forum/" title="ProgrammingR forums">forums</a>.
<br />
<br />
</div><p>The post <a href="http://www.programmingr.com/content/sparql-with-r/">SPARQL with R in less than 5 minutes</a> appeared first on <a href="http://www.programmingr.com">ProgrammingR</a>.</p><div class='yarpp-related-rss'>
<p>More like this:</p><ol>
<li><a href='http://www.programmingr.com/content/helpful-statistical-references/' rel='bookmark' title='Helpful statistical references'>Helpful statistical references</a></li>
<li><a href='http://www.programmingr.com/content/online-r-programming-resources/' rel='bookmark' title='Online R programming resources'>Online R programming resources</a></li>
<li><a href='http://www.programmingr.com/content/positioning-charts-fig-and-fin/' rel='bookmark' title='Positioning charts with fig and fin'>Positioning charts with fig and fin</a></li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.programmingr.com/content/sparql-with-r/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bioinformatician at OpenAnalytics</title>
		<link>http://www.programmingr.com/content/bioinformatician-at-openanalytics/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=bioinformatician-at-openanalytics</link>
		<comments>http://www.programmingr.com/content/bioinformatician-at-openanalytics/#comments</comments>
		<pubDate>Tue, 15 Jan 2013 16:10:45 +0000</pubDate>
		<dc:creator>bryan</dc:creator>
				<category><![CDATA[R job listings]]></category>
		<category><![CDATA[R jobs listserv]]></category>

		<guid isPermaLink="false">http://www.programmingr.com/?p=849</guid>
		<description><![CDATA[<p>OpenAnalytics is an international company providing data analysis services and products across geographies and industrial sectors. We are currently looking to expand our bioinformatics team with a candidate who fits the following profile: Bioinformatician: MSc / PhD in Computational Biology, Computer Science or Bioinformatics A detailed description can be found at http://www.openanalytics.eu/jobs Strong R and [...]</p><p>The post <a href="http://www.programmingr.com/content/bioinformatician-at-openanalytics/">Bioinformatician at OpenAnalytics</a> appeared first on <a href="http://www.programmingr.com">ProgrammingR</a>.</p><div class='yarpp-related-rss'>

More like this:<ol>
<li><a href='http://www.programmingr.com/content/embl-heidelberg-seeks-bioinformatician-data-analyst/' rel='bookmark' title='EMBL Heidelberg seeks a Bioinformatician / Data Analyst'>EMBL Heidelberg seeks a Bioinformatician / Data Analyst</a></li>
<li><a href='http://www.programmingr.com/content/strategy-analytics-lead-consultant-google/' rel='bookmark' title='Strategy &amp; Analytics Lead Consultant for Google'>Strategy &#038; Analytics Lead Consultant for Google</a></li>
<li><a href='http://www.programmingr.com/content/senior-sas-and-r-programmer/' rel='bookmark' title='Senior SAS and R Programmer'>Senior SAS and R Programmer</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>OpenAnalytics is an international company providing data analysis<br />
services and products across geographies and industrial sectors.</p>
<p>We are currently looking to expand our bioinformatics team with a<br />
candidate who fits the following profile:</p>
<p>Bioinformatician: MSc / PhD in Computational Biology, Computer Science or Bioinformatics</p>
<p>A detailed description can be found at</p>
<p>http://www.openanalytics.eu/jobs</p>
<p>Strong R and BioConductor skills are an important asset for the<br />
position.</p>
<div class="shr-publisher-849"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --><div class="wpInsert wpInsertInPostAd wpInsertBelow" style="margin: 0px;padding: 0px;font-style:italic"><br />
<strong>Looking for an R programmer or statistical programming consultant? ProgrammingR offers consulting services. For more information contact us at info@programmingr.com.</strong>
<br />
<br />
ProgrammingR offers two ways for you to stay up to date. To be notified when new articles and book reviews are posted, subscribe to the <a href="http://feeds.feedburner.com/ProgrammingR" title="ProgrammingR articles and book reviews feed">ProgrammingR articles feed</a>. To be notified when new R-based job listings are posted, subscribe to the <a href="http://feeds.feedburner.com/ProgrammingRjobs" title="ProgrammingR jobs feed">ProgrammingR jobs feed</a>. You may also want to <a href="http://www.programmingr.com/contact" title="Post an R consultant listing">post an R consultant listing</a>, <a href="http://www.programmingr.com/category/stype/r-consultants" title="ProgrammingR consultant listings">hire an R consultant</a>, or ask a question in the <a href="http://www.programmingr.com/forum/" title="ProgrammingR forums">forums</a>.
<br />
<br />
</div><p>The post <a href="http://www.programmingr.com/content/bioinformatician-at-openanalytics/">Bioinformatician at OpenAnalytics</a> appeared first on <a href="http://www.programmingr.com">ProgrammingR</a>.</p><div class='yarpp-related-rss'>
<p>More like this:</p><ol>
<li><a href='http://www.programmingr.com/content/embl-heidelberg-seeks-bioinformatician-data-analyst/' rel='bookmark' title='EMBL Heidelberg seeks a Bioinformatician / Data Analyst'>EMBL Heidelberg seeks a Bioinformatician / Data Analyst</a></li>
<li><a href='http://www.programmingr.com/content/strategy-analytics-lead-consultant-google/' rel='bookmark' title='Strategy &amp; Analytics Lead Consultant for Google'>Strategy &#038; Analytics Lead Consultant for Google</a></li>
<li><a href='http://www.programmingr.com/content/senior-sas-and-r-programmer/' rel='bookmark' title='Senior SAS and R Programmer'>Senior SAS and R Programmer</a></li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.programmingr.com/content/bioinformatician-at-openanalytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R for Dummies &#8211; De Vries and Meys (2012)</title>
		<link>http://www.programmingr.com/content/r-for-dummies-de-vries-and-meys-2012/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=r-for-dummies-de-vries-and-meys-2012</link>
		<comments>http://www.programmingr.com/content/r-for-dummies-de-vries-and-meys-2012/#comments</comments>
		<pubDate>Sun, 23 Dec 2012 02:34:42 +0000</pubDate>
		<dc:creator>bryan</dc:creator>
				<category><![CDATA[Book reviews]]></category>

		<guid isPermaLink="false">http://www.programmingr.com/?p=823</guid>
		<description><![CDATA[<p>The for Dummies series has been around since 1991. (A bit of trivia, DOS for Dummies was the first title.) I&#8217;ve owned a few books in the series and have been adequately impressed with most of them, but when I learned there was an R for Dummies I was immediately skeptical. Possibly I was skeptical [...]</p><p>The post <a href="http://www.programmingr.com/content/r-for-dummies-de-vries-and-meys-2012/">R for Dummies &#8211; De Vries and Meys (2012)</a> appeared first on <a href="http://www.programmingr.com">ProgrammingR</a>.</p><div class='yarpp-related-rss'>

More like this:<ol>
<li><a href='http://www.programmingr.com/content/data-manipulation-r-spector-2008/' rel='bookmark' title='Data Manipulation with R &#8211; Spector (2008)'>Data Manipulation with R &#8211; Spector (2008)</a></li>
<li><a href='http://www.programmingr.com/content/bayesian-computation-r-albert-2009/' rel='bookmark' title='Bayesian Computation with R &#8211; Albert (2009)'>Bayesian Computation with R &#8211; Albert (2009)</a></li>
<li><a href='http://www.programmingr.com/content/the-art-of-r-programming-matloff-2011/' rel='bookmark' title='The Art of R Programming &#8211; Matloff (2011)'>The Art of R Programming &#8211; Matloff (2011)</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>The <em>for Dummies</em> series has been around since 1991. (A bit of trivia, <em>DOS for Dummies</em> was the first title.) I&#8217;ve owned a few books in the series and have been adequately impressed with most of them, but when I learned there was an <em>R for Dummies</em> I was immediately skeptical. Possibly I was skeptical because R has a steep learning curve and many idiosyncrasies, so the idea of an <em>R for Dummies</em> text seemed oxymoronic &#8211; it&#8217;s difficult to imagine a (successfully) dumbed-down version of an introductory R text. But if you&#8217;re familiar with the <em>for Dummies</em> series, you already know that the moniker is just for marketing. In reality, these books usually do a good job of distilling a topic down to the important components a new user needs to know. This edition is no exception.</p>
<div style="float:right; background-color: lightblue; border: 1px solid darkblue; padding:5px; margin: 2px; width: 325px;"><strong>Title:</strong> R for Dummies<br /><strong>Author(s):</strong> Andrie de Vries and Joris Meys<br /><strong>Publisher/Date:</strong> Wiley and Sons/2012<br /><strong>Statistics level:</strong> Not Applicable <br /><strong>Programming level:</strong> Beginner <br /><strong>Overall recommendation:</strong>  Highly Recommended</div>
<p>The core topic areas that <em>R for Dummies </em>covers should come as no surprise: A basic overview of R and its capabilities, importing data into R, writing and debugging functions, summarizing data and graphing. In addition, there are sections covering potentially frustrating tasks for beginners such as working with dates and multidimensional arrays.</p>
<p>I am a big fan of periodically reviewing the fundamentals. I pick up introductory texts every once and a while to make sure I haven&#8217;t forgotten anything important and <em>R for Dummies</em> is a nice edition to my library for that reason.</p>
<p>One thing that sets this book apart from other currently available introductory R texts is that it covers a couple of recent and important developments in R coding &#8211; namely the RStudio development environment and ggplot2 graphics.</p>
<p>If you&#8217;re not familiar with the <em>for Dummies</em> series, it is important to note that they are written in a specific informal style, which is in stark contrast to most R texts. (For reference, the style is more similar to The R Inferno than the ggplot2 manual.) You can get a sense of this style by <a href="http://www.amazon.com/gp/product/1119962846/ref=as_li_ss_tl?ie=UTF8&#038;tag=booktast-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=1119962846">browsing a few pages on Amazon</a><img src="http://www.assoc-amazon.com/e/ir?t=booktast-20&#038;l=as2&#038;o=1&#038;a=1119962846" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> to see if you find it helpful or distracting. On the other hand, <em>R for Dummies</em> has a more polished feel than many R texts I&#8217;ve read. I didn&#8217;t encounter any of the frustrating and distracting editing errors that are common in some R texts. </p>
<p><a href="http://www.programmingr.com/wp-content/uploads/2013/01/RforDummiesImg.jpg"><img src="http://www.programmingr.com/wp-content/uploads/2013/01/RforDummiesImg-238x300.jpg" alt="" title="RforDummiesImage" width="238" height="300" class="alignright size-medium wp-image-851" /></a><em>R for Dummies</em> is primarily focused on R as a programming language, so for the most part, statistical analyses are presented only as a means of illustrating programming techniques. Given its focus on programming and fundamentals, this book is highly recommended for someone with little to no experience in R who wants to learn R programming. Intermediate to advanced R programmers like myself who want a current review of the fundamentals, might also find it useful. </p>
<p>I might also recommend <em>R for Dummies</em> to experienced users of other programming languages who are new to R. The discussion of basic programming concepts, such as control flow, is minimal and focused primarily on details specific to R. It is not recommended for those looking to learn statistics in conjunction with R. </p>
<p>The current price of $20 USD puts it in the middle price range for texts of its kind. It is available as a paperback or Kindle text.</p>
<div class="shr-publisher-823"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --><div class="wpInsert wpInsertInPostAd wpInsertBelow" style="margin: 0px;padding: 0px;font-style:italic"><br />
<strong>Looking for an R programmer or statistical programming consultant? ProgrammingR offers consulting services. For more information contact us at info@programmingr.com.</strong>
<br />
<br />
ProgrammingR offers two ways for you to stay up to date. To be notified when new articles and book reviews are posted, subscribe to the <a href="http://feeds.feedburner.com/ProgrammingR" title="ProgrammingR articles and book reviews feed">ProgrammingR articles feed</a>. To be notified when new R-based job listings are posted, subscribe to the <a href="http://feeds.feedburner.com/ProgrammingRjobs" title="ProgrammingR jobs feed">ProgrammingR jobs feed</a>. You may also want to <a href="http://www.programmingr.com/contact" title="Post an R consultant listing">post an R consultant listing</a>, <a href="http://www.programmingr.com/category/stype/r-consultants" title="ProgrammingR consultant listings">hire an R consultant</a>, or ask a question in the <a href="http://www.programmingr.com/forum/" title="ProgrammingR forums">forums</a>.
<br />
<br />
</div><p>The post <a href="http://www.programmingr.com/content/r-for-dummies-de-vries-and-meys-2012/">R for Dummies &#8211; De Vries and Meys (2012)</a> appeared first on <a href="http://www.programmingr.com">ProgrammingR</a>.</p><div class='yarpp-related-rss'>
<p>More like this:</p><ol>
<li><a href='http://www.programmingr.com/content/data-manipulation-r-spector-2008/' rel='bookmark' title='Data Manipulation with R &#8211; Spector (2008)'>Data Manipulation with R &#8211; Spector (2008)</a></li>
<li><a href='http://www.programmingr.com/content/bayesian-computation-r-albert-2009/' rel='bookmark' title='Bayesian Computation with R &#8211; Albert (2009)'>Bayesian Computation with R &#8211; Albert (2009)</a></li>
<li><a href='http://www.programmingr.com/content/the-art-of-r-programming-matloff-2011/' rel='bookmark' title='The Art of R Programming &#8211; Matloff (2011)'>The Art of R Programming &#8211; Matloff (2011)</a></li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.programmingr.com/content/r-for-dummies-de-vries-and-meys-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Helper Function Contest</title>
		<link>http://www.programmingr.com/content/helper-function-contest/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=helper-function-contest</link>
		<comments>http://www.programmingr.com/content/helper-function-contest/#comments</comments>
		<pubDate>Sun, 02 Dec 2012 20:28:57 +0000</pubDate>
		<dc:creator>bryan</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Site news]]></category>

		<guid isPermaLink="false">http://www.programmingr.com/?p=783</guid>
		<description><![CDATA[<p>Just in time for the holidays, ProgrammingR is giving you the opportunity to win a gift for yourself or someone who loves R. And in the spirit of the holidays, you&#8217;ll also be giving back to the R community. In the last article I presented two helper functions I use often. I also teased an [...]</p><p>The post <a href="http://www.programmingr.com/content/helper-function-contest/">Helper Function Contest</a> appeared first on <a href="http://www.programmingr.com">ProgrammingR</a>.</p><div class='yarpp-related-rss'>

More like this:<ol>
<li><a href='http://www.programmingr.com/content/helpful-statistical-references/' rel='bookmark' title='Helpful statistical references'>Helpful statistical references</a></li>
<li><a href='http://www.programmingr.com/content/online-r-programming-resources/' rel='bookmark' title='Online R programming resources'>Online R programming resources</a></li>
<li><a href='http://www.programmingr.com/content/r-helper-functions/' rel='bookmark' title='R Helper Functions'>R Helper Functions</a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Just in time for the holidays, ProgrammingR is giving you the opportunity to win a gift for yourself or someone who loves R. And in the spirit of the holidays, you&#8217;ll also be giving back to the R community.</p>
<p>In <a href="http://www.programmingr.com/content/r-helper-functions/" title="R helper functions">the last article</a> I presented two helper functions I use often. I also teased an upcoming, related event. This is that event. </p>
<p>The premise is simple. Post your favorite (original) R helper function(s). We&#8217;ll select 3-5 of the top candidates and put those to a popular vote. The author of the function with the most votes at the end of the contest will receive their choice of one of the three books below.  </p>
<div style="float:left;padding:0px 0px 0px 150px;"><a href="http://www.amazon.com/gp/product/1593273843/ref=as_li_ss_il?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=1593273843&#038;linkCode=as2&#038;tag=booktast-20"><img border="0" src="http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&#038;ASIN=1593273843&#038;Format=_SL110_&#038;ID=AsinImage&#038;MarketPlace=US&#038;ServiceVersion=20070822&#038;WS=1&#038;tag=booktast-20" ></a><img src="http://www.assoc-amazon.com/e/ir?t=booktast-20&#038;l=as2&#038;o=1&#038;a=1593273843" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div>
<div style="float:left;padding:0px 150px 0px 150px;"><a href="http://www.amazon.com/gp/product/0596809158/ref=as_li_ss_il?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=0596809158&#038;linkCode=as2&#038;tag=booktast-20"><img border="0" src="http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&#038;ASIN=0596809158&#038;Format=_SL110_&#038;ID=AsinImage&#038;MarketPlace=US&#038;ServiceVersion=20070822&#038;WS=1&#038;tag=booktast-20"></a><img src="http://www.assoc-amazon.com/e/ir?t=booktast-20&#038;l=as2&#038;o=1&#038;a=0596809158" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></div>
<div style="padding:0px 0px 0px 0px;"><a href="http://www.amazon.com/gp/product/1449309925/ref=as_li_ss_il?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=1449309925&#038;linkCode=as2&#038;tag=booktast-20"><img border="0" src="http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&#038;ASIN=1449309925&#038;Format=_SL110_&#038;ID=AsinImage&#038;MarketPlace=US&#038;ServiceVersion=20070822&#038;WS=1&#038;tag=booktast-20" style="border:solid gray 1px;"></a><img src="http://www.assoc-amazon.com/e/ir?t=booktast-20&#038;l=as2&#038;o=1&#038;a=1449309925" width="1" height="1" border="0" alt="" style="border:none; !important; margin:0px !important;" /></div>
<p>The contest begins now. Post your submissions to <a href="http://www.programmingr.com/topic/useful-R-helper-functions/" title="Useful R helper functions">this forum</a> or use the comments below to point us to a post on your site written specifically for this contest. You can enter as many of your helper functions as you like between now and midnight 12/14/12 Eastern Standard Time. We&#8217;ll choose the finalists and allow approximately a week of voting for them starting soon after 12/14. The author of the function with the most votes at the end of the popular voting will be the winner.  </p>
<p>I look forward to seeing what the ProgrammingR community has to offer!</p>
<p><strong>Some Important Guidelines:</strong><br />
<em>By participating, you agree to be bound by the decisions of the ProgrammingR staff in all contest-related aspects, but especially in regard to who the finalists are and the winner is. We will do our best to run a fair and impartial contest, but we can&#8217;t guarantee the originality of every submission, for example. You also certify that you have the right to publicly post any code you submit and that we can repost it on the site. If you point us to a submission on your site and your code is selected as a finalist, we&#8217;ll need to verify that it actually is your site. </em></p>
<div class="shr-publisher-783"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic --><div class="wpInsert wpInsertInPostAd wpInsertBelow" style="margin: 0px;padding: 0px;font-style:italic"><br />
<strong>Looking for an R programmer or statistical programming consultant? ProgrammingR offers consulting services. For more information contact us at info@programmingr.com.</strong>
<br />
<br />
ProgrammingR offers two ways for you to stay up to date. To be notified when new articles and book reviews are posted, subscribe to the <a href="http://feeds.feedburner.com/ProgrammingR" title="ProgrammingR articles and book reviews feed">ProgrammingR articles feed</a>. To be notified when new R-based job listings are posted, subscribe to the <a href="http://feeds.feedburner.com/ProgrammingRjobs" title="ProgrammingR jobs feed">ProgrammingR jobs feed</a>. You may also want to <a href="http://www.programmingr.com/contact" title="Post an R consultant listing">post an R consultant listing</a>, <a href="http://www.programmingr.com/category/stype/r-consultants" title="ProgrammingR consultant listings">hire an R consultant</a>, or ask a question in the <a href="http://www.programmingr.com/forum/" title="ProgrammingR forums">forums</a>.
<br />
<br />
</div><p>The post <a href="http://www.programmingr.com/content/helper-function-contest/">Helper Function Contest</a> appeared first on <a href="http://www.programmingr.com">ProgrammingR</a>.</p><div class='yarpp-related-rss'>
<p>More like this:</p><ol>
<li><a href='http://www.programmingr.com/content/helpful-statistical-references/' rel='bookmark' title='Helpful statistical references'>Helpful statistical references</a></li>
<li><a href='http://www.programmingr.com/content/online-r-programming-resources/' rel='bookmark' title='Online R programming resources'>Online R programming resources</a></li>
<li><a href='http://www.programmingr.com/content/r-helper-functions/' rel='bookmark' title='R Helper Functions'>R Helper Functions</a></li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.programmingr.com/content/helper-function-contest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
