<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>R Community on R Views</title>
    <link>https://rviews.rstudio.com/categories/r-community/</link>
    <description>Recent content in R Community on R Views</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <lastBuildDate>Thu, 10 Mar 2022 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://rviews.rstudio.com/categories/r-community/" rel="self" type="application/rss+xml" />
    
    
    
    
    <item>
      <title>Data Challenges for R Users</title>
      <link>https://rviews.rstudio.com/2022/03/10/data-challenges/</link>
      <pubDate>Thu, 10 Mar 2022 00:00:00 +0000</pubDate>
      
      <guid>https://rviews.rstudio.com/2022/03/10/data-challenges/</guid>
      <description>
        &lt;p&gt;Today, I want to write about &amp;ldquo;data challenges&amp;rdquo;, where participants partake in a series of prompts designed for a variety of skill sets and levels. These challenges are opportunities to practice programming skills, work on algorithmic efficiency, or learn something new. Often, participants share the code for their submissions, teaching others their processes and techniques.&lt;/p&gt;

&lt;p&gt;The challenges test the participants&amp;rsquo; tenacity with time-bound but flexible prompts. &lt;a href=&#34;https://github.com/rfordatascience/tidytuesday&#34;&gt;TidyTuesday&lt;/a&gt; was originally borne out of the &lt;a href=&#34;http://r4ds.io/join&#34;&gt;R4DS Online Learning Community&lt;/a&gt; and the &lt;a href=&#34;https://r4ds.had.co.nz/&#34;&gt;R for Data Science textbook&lt;/a&gt;. RStudio’s &lt;a href=&#34;https://twitter.com/thomas_mock&#34;&gt;Tom Mock&lt;/a&gt; shares a dataset every Tuesday. The challenge is to explore the dataset and create a chart within seven days. Participants decide what variables to focus on and how to best visualize them.&lt;/p&gt;

&lt;p&gt;Using a recent TidyTuesday dataset, &lt;a href=&#34;https://twitter.com/moriah_taylor58&#34;&gt;Moriah Taylor&lt;/a&gt; visualizes alternative fueling stations in the U.S. The stacked tilted maps communicate relationships, density, and location while demonstrating beautiful design.&lt;/p&gt;

&lt;p&gt;&lt;img src=&#34;tt.jpg&#34; alt=&#34;Stacked tilted map showing density of biodiesel, propane, ethanol, and electric fueling stations in the U.S.&#34; /&gt;&lt;/p&gt;

&lt;p&gt;Moriah&amp;rsquo;s &lt;a href=&#34;https://github.com/moriahtaylor1/tidy-tuesday/blob/main/2022_Week09/TT_AlternativeFuel.R&#34;&gt;code&lt;/a&gt; introduced me to the &lt;a href=&#34;https://cran.r-project.org/web/packages/layer/index.html&#34;&gt;layer&lt;/a&gt; package, which tilts maps and turns them into ggplot2 objects:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;#plot tilted maps
plot &amp;lt;- plot_tiltedmaps(maps_list,
                layer = c(&amp;quot;value&amp;quot;, &amp;quot;value&amp;quot;, &amp;quot;value&amp;quot;, &amp;quot;value&amp;quot;),
                palette = c(&amp;quot;magma&amp;quot;, &amp;quot;magma&amp;quot;, &amp;quot;magma&amp;quot;, &amp;quot;magma&amp;quot;))
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Data challenges can also be language-agnostic. &lt;a href=&#34;http://genuary.art/&#34;&gt;Genuary&lt;/a&gt; encourages participants to create works of generative art with the programming language of their choice. R users apply their coding skills and tools in imaginative ways. On Day 6 of genuary, &lt;a href=&#34;https://twitter.com/ryantimpe&#34;&gt;Ryan Timpe&lt;/a&gt; &amp;ldquo;destroys the square&amp;rdquo;:&lt;/p&gt;

&lt;p&gt;&lt;img src=&#34;square.png&#34; alt=&#34;Generative art of nine squares with pieces missing or torn&#34; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&#34;https://github.com/ryantimpe/genuary2022/blob/main/R/gen_05.R&#34;&gt;Taking a look at the code&lt;/a&gt;, we learn how to plot a square in R with the tidyr and dplyr packages:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;library(tidyverse)
set.seed(12238)

#The square

square_size = 400

the_square &amp;lt;- expand_grid(
  x=1:square_size,
  y=1:square_size
) %&amp;gt;%
  mutate(
    color = &amp;quot;#87ceeb&amp;quot;
  )

plot(the_square$x, the_square$y)
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;We can also see how Ryan inserts randomness to &amp;lsquo;destroy&amp;rsquo; the square through the strategic use of functions like &lt;code&gt;sample()&lt;/code&gt; and &lt;code&gt;runif()&lt;/code&gt;:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;circ_origin_size = square_size * runif(1, 2/4, 3/4)
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Interested in participating in a data challenge? The &lt;a href=&#34;https://twitter.com/30DayChartChall&#34;&gt;30 Day Chart Challenge&lt;/a&gt; is coming up. The organizers offer different chart types for you to visualize in April. Showcase your R skills, test your perseverance, and use the hashtag &lt;code&gt;#30DayChartChallenge&lt;/code&gt; to share your work with other participants.&lt;/p&gt;

&lt;p&gt;We started to compile a list of other data challenges to join. Please leave a comment if you are aware of others.&lt;/p&gt;

&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Timeframe&lt;/th&gt;
&lt;th&gt;Name&lt;/th&gt;
&lt;th&gt;URL&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;

&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;January&lt;/td&gt;
&lt;td&gt;genuary&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;http://genuary.art/&#34;&gt;http://genuary.art/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;April&lt;/td&gt;
&lt;td&gt;30 Day Chart Challenge&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;https://twitter.com/30DayChartChall&#34;&gt;https://twitter.com/30DayChartChall&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;October&lt;/td&gt;
&lt;td&gt;Hacktoberfest&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;https://hacktoberfest.digitalocean.com/&#34;&gt;https://hacktoberfest.digitalocean.com/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;November&lt;/td&gt;
&lt;td&gt;30 Day Map Challenge&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;https://github.com/tjukanovt/30DayMapChallenge&#34;&gt;https://github.com/tjukanovt/30DayMapChallenge&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;December&lt;/td&gt;
&lt;td&gt;Advent of Code&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;https://adventofcode.com/&#34;&gt;https://adventofcode.com/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;Monday&lt;/td&gt;
&lt;td&gt;Makeover Monday&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;https://www.makeovermonday.co.uk/&#34;&gt;https://www.makeovermonday.co.uk/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;Tuesday&lt;/td&gt;
&lt;td&gt;Tidy Tuesday&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;https://github.com/rfordatascience/tidytuesday&#34;&gt;https://github.com/rfordatascience/tidytuesday&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;Thursday, Summer Months&lt;/td&gt;
&lt;td&gt;Recreation Thursday&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;https://github.com/sharlagelfand/RecreationThursday&#34;&gt;https://github.com/sharlagelfand/RecreationThursday&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;Sunday&lt;/td&gt;
&lt;td&gt;SportsViz Sundays&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;https://data.world/sportsvizsunday&#34;&gt;https://data.world/sportsvizsunday&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;Monthly&lt;/td&gt;
&lt;td&gt;SWD&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;https://community.storytellingwithdata.com/&#34;&gt;https://community.storytellingwithdata.com/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;Ongoing&lt;/td&gt;
&lt;td&gt;100 Days of Code&lt;/td&gt;
&lt;td&gt;&lt;a href=&#34;https://www.100daysofcode.com/&#34;&gt;https://www.100daysofcode.com/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;

&lt;p&gt;&lt;em&gt;Thank you to &lt;a href=&#34;https://twitter.com/moriah_taylor58&#34;&gt;Moriah Taylor&lt;/a&gt; and &lt;a href=&#34;https://twitter.com/ryantimpe&#34;&gt;Ryan Timpe&lt;/a&gt; for sharing their visualizations.&lt;/em&gt;&lt;/p&gt;

        &lt;script&gt;window.location.href=&#39;https://rviews.rstudio.com/2022/03/10/data-challenges/&#39;;&lt;/script&gt;
      </description>
    </item>
    
    <item>
      <title>Interview with Oscar Baruffa, Creator of the Big Book of R</title>
      <link>https://rviews.rstudio.com/2022/01/04/interview-with-oscar-baruffa/</link>
      <pubDate>Tue, 04 Jan 2022 00:00:00 +0000</pubDate>
      
      <guid>https://rviews.rstudio.com/2022/01/04/interview-with-oscar-baruffa/</guid>
      <description>
        

&lt;p&gt;Welcome to the new year! If you&amp;rsquo;re itching to improve your R skills in 2022, we have the resource for you.&lt;/p&gt;

&lt;p&gt;We&amp;rsquo;re excited to share the &lt;a href=&#34;https://www.bigbookofr.com/&#34;&gt;Big Book of R&lt;/a&gt;. &amp;ldquo;Your last-ever bookmark&amp;rdquo;, the Big Book of R is an impressive collection of R-related books from a variety of subjects. Creator &lt;a href=&#34;https://twitter.com/OscarBaruffa&#34;&gt;Oscar Baruffa&lt;/a&gt; first published the book in August 2020. Since then, it has grown from a list of 80 to over 200, garnering 73,000 unique visitors and 195,000 pageviews from readers around the globe.&lt;/p&gt;

&lt;p&gt;The Book is organized by different subjects that range from &lt;a href=&#34;https://www.bigbookofr.com/new-to-r-start-here.html&#34;&gt;introduction to R programming&lt;/a&gt; to &lt;a href=&#34;https://www.bigbookofr.com/big-data.html&#34;&gt;big data&lt;/a&gt; to &lt;a href=&#34;https://www.bigbookofr.com/archeology.html&#34;&gt;archeology&lt;/a&gt;. Its organization and search functionality make it easy for newcomers to find books related to their topic of interest.&lt;/p&gt;

&lt;p&gt;&lt;img src=&#34;num_books.png&#34; alt=&#34;Bar chart of the books by section in the Big Book of R&#34; /&gt;&lt;/p&gt;

&lt;p&gt;The Big Book of R is a wonderful example of collaboration in the R Community. Oscar wrote the book using the &lt;a href=&#34;https://bookdown.org/&#34;&gt;bookdown&lt;/a&gt; package. Contributors can file an issue or create a pull request on &lt;a href=&#34;https://github.com/oscarbaruffa/BigBookofR&#34;&gt;Github&lt;/a&gt;. And of course, the book would not be possible without the authors who have written books to guide others on their R journey.&lt;/p&gt;

&lt;p&gt;While you are preparing for 2022, we encourage you to cozy up to one of the great books in the Big Book of R.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Check out the &lt;a href=&#34;https://www.bigbookofr.com/&#34;&gt;Big Book of R&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Contribute to the &lt;a href=&#34;https://github.com/oscarbaruffa/BigBookofR&#34;&gt;Github Repository&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Follow &lt;a href=&#34;https://twitter.com/OscarBaruffa&#34;&gt;Oscar on Twitter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Subscribe to the &lt;a href=&#34;https://oscarbaruffa.com/newsletter/&#34;&gt;newsletter&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&#34;interview-with-oscar&#34;&gt;Interview with Oscar&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Hello! Could you tell us a bit about yourself, please?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I’m a South African now living in the Netherlands, working as a Data Specialist in an international development non-profit focused on sustainable trade systems. My role is basically that of a senior analytics manager and I’m the first one, so I get to have all the fun directing the development of our data pipeline! No really, it’s a lot of fun :).&lt;/p&gt;

&lt;p&gt;I studied Mechanical Engineering in my undergraduate and masters degrees and have been dabbling in tech-related side projects and hobbies for many years.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How did you get started with the R Community?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I think it was sometime in late 2018 when I was busy learning a bit of Python and &lt;a href=&#34;https://twitter.com/kierisi&#34;&gt;Jesse Mostipak&lt;/a&gt; started popping up on my Twitter feed. She made R sound quite fun so I thought I’d give it a try. After I got to the exercise in &lt;a href=&#34;https://r4ds.had.co.nz/&#34;&gt;R for Data Science&lt;/a&gt; by &lt;a href=&#34;https://twitter.com/hadleywickham&#34;&gt;Hadley Wickham&lt;/a&gt; and &lt;a href=&#34;https://twitter.com/StatGarrett&#34;&gt;Garrett Grolemund&lt;/a&gt; where you’re introduced to &lt;a href=&#34;https://r4ds.had.co.nz/data-visualisation.html#facets&#34;&gt;faceting a plot&lt;/a&gt;, my mind was blown and I was hooked.&lt;/p&gt;

&lt;p&gt;I then started participating in the &lt;a href=&#34;https://github.com/rfordatascience/tidytuesday&#34;&gt;#TidyTuesday&lt;/a&gt; challenge and recorded some screencasts on my “&lt;a href=&#34;https://www.youtube.com/c/OtherPeoplesRstats&#34;&gt;Other People’s RStats&lt;/a&gt;” YouTube channel. I took a bit of a leap of faith submitting a &lt;a href=&#34;https://youtu.be/AXYst7P1i3s&#34;&gt;lightning talk&lt;/a&gt; for &lt;a href=&#34;https://satrdays.org/&#34;&gt;satRday&lt;/a&gt; Johannesburg in April 2019, which was being organised by &lt;a href=&#34;https://twitter.com/datawookie&#34;&gt;Andrew Collier&lt;/a&gt; and &lt;a href=&#34;https://twitter.com/mbeckett_za&#34;&gt;Megan Beckett&lt;/a&gt;.  I was selected, which was a welcome surprise for my little topic. They were so helpful when I was trying to figure out the pull request flow for submitting my presentation. I also attended my first-ever R  workshop the day before (which Andrew presented), which was the first time  I’d ever sat in a room with other people who love R. It was awesome!&lt;/p&gt;

&lt;p&gt;While doing all of this, I was also following more and more people on Twitter who were tweeting about R, collecting bookmarks of packages, tutorials, and, of course, books. I was having a lot of fun. By early 2020, I wrote my first book with&lt;a href=&#34;https://twitter.com/veerlevanson&#34;&gt; Veerle van Son&lt;/a&gt; called &lt;a href=&#34;https://www.t4rstats.com/&#34;&gt;Twitter for R Programmers&lt;/a&gt; as a way to introduce others to the R community on the social platform. So by that point, you could say I’d become heavily invested in the community :).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What inspired you to start the Big Book of R?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I had been diligently collecting bookmarks of books as I was finding them. After about 2 years of doing so, I had an inkling that I must have a large collection. One day, I counted about 80. I compared it to other lists of books that I’d seen published and I had way more, so I figured this might be quite unique to have so many.&lt;/p&gt;

&lt;p&gt;Having had written my own short book, I also appreciated how much effort it took and I felt there must be better usability for readers and discoverability for authors if books were all listed in one place and grouped by topic (I invented a library - haha!). I also hoped (still do) that it might encourage more writing too. I put all the books together, spent some time categorising them, and in August 2020 published it. It made quite a splash!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tell us about the design choices you made to make the book inclusive and open to the community.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I opted to use &lt;a href=&#34;https://bookdown.org/&#34;&gt;bookdown&lt;/a&gt; and git as I already had a bit of experience using them for &lt;a href=&#34;https://www.t4rstats.com/&#34;&gt;Twitter for R Programmers&lt;/a&gt;. It felt very “meta” and fitting to use bookdown, which had in turn been used for almost all of the books in the collection. I was hoping this format would allow others to submit books as well — and they’ve &lt;a href=&#34;https://www.bigbookofr.com/index.html#contributors&#34;&gt;generously done so&lt;/a&gt;. I kept the collection as a plain text format in the hope that it would slightly lower the barrier to people submitting books, but in the end, many people just tag me in a tweet which is welcome :).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What has surprised you the most about this project?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I knew people would like this but I didn’t expect how much it would be appreciated. Every now and then, I get a message of thanks for creating and maintaining it that really makes me feel warm and fuzzy inside. I hope people also reach out to the authors and do the same. Their effort in writing these books is immense and a little bit of appreciation will make their day —  guaranteed!&lt;/p&gt;

&lt;p&gt;What also surprises me is how there’s very consistent spikes in views and a steady growth in daily visitors whenever someone else shares the Big Book of R. If you’re interested to see the analytics, I’ve made them &lt;a href=&#34;https://www.bigbookofr.com/index.html#live-stats&#34;&gt;publicly accessible&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What’s in store for the Big Book of R in 2022?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I’m sure the collection will keep growing :).&lt;/p&gt;

&lt;p&gt;I’ve just remodeled how the content is generated. Instead of capturing the book entries directly into markdown, it’s now generated by reading the data from a &lt;a href=&#34;https://docs.google.com/spreadsheets/d/1vufdtrIzF5wbkWZUG_HGIBAXpT1C4joPx2qTh5aYzDg/edit#gid=2112909599&#34;&gt;Google sheet&lt;/a&gt;. This new setup gives me the flexibility to do things like alphabetize the books more easily, add additional fields and tags more easily, set up Twitter/LinkedIn bots to  automatically post about books in the collection, set up scripts to detect book updates, etc. Basically, I want to open up more possibilities for further automation and discoverability. If anyone is building anything using this data, &lt;a href=&#34;https://twitter.com/OscarBaruffa&#34;&gt;I’d love to hear about it&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;If anyone has ideas of how to improve, please get in touch with me or submit an issue in the &lt;a href=&#34;https://github.com/oscarbaruffa/BigBookofR&#34;&gt;repo&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Do you have any ongoing or upcoming projects you’d like the R Community to know about?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If things work out, there’s a chance I’ll be a technical reviewer on two R books being worked on in 2022, so that’ll be a new experience for me that I’m looking forward to. I’m going to keep writing useful articles about R, data and data careers over on &lt;a href=&#34;https://oscarbaruffa.com/&#34;&gt;my blog &lt;/a&gt;(and releasing fun R-related products here and there). The best way to be notified of those is to sign up to my &lt;a href=&#34;https://oscarbaruffa.com/newsletter/&#34;&gt;newsletter&lt;/a&gt;. I’m also looking to write some more on the topic of Project Management to build upon my other bit of work that I’m really proud of, &lt;a href=&#34;https://oscarbaruffa.com/pm/&#34;&gt;Project Management Fundamentals for Data Analysts&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Closing question: what is your favorite R package right now?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I think I’d give that accolade to {dplyr}! I’m pretty sure that &lt;code&gt;filter()&lt;/code&gt; and &lt;code&gt;group_by()&lt;/code&gt; are my most-used functions. Nothing gives me greater pleasure than a good &lt;code&gt;anti_join()&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;We at RStudio would like to thank Oscar for his contribution to RViews and the creation of a great resource for the R Community. Happy reading in 2022!&lt;/em&gt;&lt;/p&gt;

        &lt;script&gt;window.location.href=&#39;https://rviews.rstudio.com/2022/01/04/interview-with-oscar-baruffa/&#39;;&lt;/script&gt;
      </description>
    </item>
    
    <item>
      <title>R Views Call for Documentation</title>
      <link>https://rviews.rstudio.com/2021/08/04/r-views-blog-contest/</link>
      <pubDate>Wed, 04 Aug 2021 00:00:00 +0000</pubDate>
      
      <guid>https://rviews.rstudio.com/2021/08/04/r-views-blog-contest/</guid>
      <description>
        

&lt;p&gt;We at R Views believe that the R ecosystem, centered around CRAN and Bioconductor, is the world’s largest open repository of statistical knowledge. R packages provide implementations and examples for a tremendous number of statistical methods, procedures, and algorithms. Yet, the virtual library of the R ecosystem is far from being complete. There is plenty of room for examples that explore some little travelled path of computational statistics or illuminate a familiar field with clarity. We invite you to contribute to expanding the knowledge available in the R ecosystem through blogging.&lt;/p&gt;

&lt;p&gt;Documentation for R packages begins with the package pdf file which provides a detailed description for each individual function, indicates relationships among functions and often includes references to the statistical and scientific literature. Going down an organizational level you can view the source code for each function. Moving up a level, README files and package vignettes provide a coherent overview of the capabilities of the package as a whole and often include example and elaborate use cases.&lt;/p&gt;

&lt;p&gt;While the burden to explain what R packages do falls mainly on package authors, all of us data scientists, statisticians, researchers, students and &amp;ldquo;ordinary&amp;rdquo; R users can add to the knowledge encoded in R by elaborating on the capabilities of R functions and packages, developing additional examples and contributing statistical analyses in areas where we may have developed some expertise.&lt;/p&gt;

&lt;p&gt;&lt;img src=&#34;https://imgs.xkcd.com/comics/unpublished_discoveries.png&#34; height = &#34;300&#34; width=&#34;500&#34;&gt;
 &lt;sup&gt;&lt;a href=&#34;https://www.explainxkcd.com/wiki/index.php/1805:_Unpublished_Discoveries&#34;&gt;xkcd 1805 Unpublished Discoveries&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;

&lt;p&gt;We are not talking about Nobel Laureate work here. But nearly everyone who regularly uses R has some gem stashed away somewhere. We are looking to mine those gems and organize them in a way that can be shared with the R Community.&lt;/p&gt;

&lt;p&gt;We are asking you to please dig up your gem and organize it into a blog post. Tell us what your gem does, how it works, and why it is of some value. Some of the most popular R Views posts introduce technical topics by providing R based tutorials. Others show how to efficiently accomplish everyday tasks or present an elegant calculation or visualization. Think in terms of a well explained example, or if you are really ambitious, you could write that package vignette that you wish existed. Look below for some guidance on more elaborate ideas.&lt;/p&gt;

&lt;h2 id=&#34;call-for-posts&#34;&gt;Call for Posts&lt;/h2&gt;

&lt;p&gt;Please submit you posts using the following form: &lt;a href=&#34;https://rstd.io/rviews-2021&#34;&gt;rstd.io/rviews-2021&lt;/a&gt;. All submissions will appear on the &lt;a href=&#34;https://community.rstudio.com/c/60&#34;&gt;&lt;em&gt;Call for Docs&lt;/em&gt;&lt;/a&gt; page on the RStudio Community Site, and you will need an RStudio Community profile.&lt;/p&gt;

&lt;p&gt;The deadline for submission is &lt;strong&gt;Friday, September 23, 2021&lt;/strong&gt;. We planning awards of a sort to the best entries and would like to announce these by November 1, 2021.&lt;/p&gt;

&lt;h3 id=&#34;awards&#34;&gt;Awards&lt;/h3&gt;

&lt;p&gt;The award categories and the associated prizes are as follows:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Honorable Mentions&lt;/strong&gt;:

&lt;ul&gt;
&lt;li&gt;One year free RStudio Cloud Premium&lt;/li&gt;
&lt;li&gt;A bunch of hex stickers of RStudio packages&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Runners Up&lt;/strong&gt;:

&lt;ul&gt;
&lt;li&gt;All prizes listed above, plus&lt;/li&gt;
&lt;li&gt;Some number of RStudio t-shirts, books, and mugs (worth up to $200)&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Grand Prizes&lt;/strong&gt;:

&lt;ul&gt;
&lt;li&gt;All prizes listed above, plus&lt;/li&gt;
&lt;li&gt;Special &amp;amp; persistent recognition by RStudio in the form of a winners page, and a badge that will be publicly visible on your RStudio Community profile&lt;/li&gt;
&lt;li&gt;A selected group of submissions will be invited to appear on R Views&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;sup&gt;* Please note that we may not be able to send t-shirts, books, or other larger items to non-US addresses.&lt;/sup&gt;&lt;br&gt;
&lt;sup&gt;* Please note that all articles on R Views will go through an editorial review before being published there.&lt;/sup&gt;&lt;br&gt;
&lt;sup&gt;* With the author&amp;rsquo;s permission, some posts may appear on R Views before the awards announcements. &lt;/sup&gt;.&lt;/p&gt;

&lt;h3 id=&#34;announcement&#34;&gt;Announcement&lt;/h3&gt;

&lt;p&gt;The names and work of all winners will be highlighted in an announcement on R Views, and we will announce them on RStudio’s social platforms, including RStudio Community (unless the winner prefers not to be mentioned).&lt;/p&gt;

&lt;h2 id=&#34;need-inspiration&#34;&gt;Need inspiration?&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Edgar Ruiz &lt;a href=&#34;https://rviews.rstudio.com/2019/06/19/a-gentle-intro-to-tidymodels/&#34;&gt;Gentle Introduction to tidymodels&lt;/a&gt; is a good example of a homemade package vignette.&lt;/li&gt;
&lt;li&gt;Jonathan Regenstein&amp;rsquo;s series on &lt;a href=&#34;https://rviews.rstudio.com/categories/reproducible-finance-with-r/&#34;&gt;Reproducible Finance with R&lt;/a&gt; presents several masterful examples of Financial use cases.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&#34;guidance&#34;&gt;Guidance&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Posts should be well-written, contain enough code to support the main argument and have a few plots and/or tables.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Novelty&lt;/strong&gt; - We are looking for original content. That is, your article should not have appeared on blogging platforms, other than your personal website or blog.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Contribution&lt;/strong&gt; - Your article should provide novel insight and utility. For example, an exploration of a package or use case that is currently poorly documented will be better received than one which already has excellent documentation and vignettes either on CRAN or in the R community.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Reproducible&lt;/strong&gt; - Your submission will need to link to a repo which includes an .Rmd file that reproduces all code, images, and other output in the submitted article. If there is code that requires special resources, such as access to a private database, it is fine to simply refer to these in your repo.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Please confine your posts to less than 1,000 words&lt;/strong&gt;, excluding code and image captions. Your article should be self-contained, but may refer to additional content on your repo or personal website.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&#34;categories&#34;&gt;Categories&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Homemade Package Vignette&lt;/strong&gt; - Package authors put in a lot of effort to build their library and the documentation that supports it, but they can&amp;rsquo;t cover everything. They may not have developed a vignette yet, or written additional documentation explaining the set of functionality that is especially useful.
With this type of article, introduce readers to a package &amp;ndash; or small group of packages &amp;ndash; highlighting interesting features or extensions. It should not replicate any existing documentation, instead it should be distinct from &amp;ndash; and complementary to &amp;ndash; any existing package documentation.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Entry Point into a Topic&lt;/strong&gt; - It&amp;rsquo;s often daunting to get started as you&amp;rsquo;re exploring a new field or approaching a new problem or methodology. It&amp;rsquo;s incredibly pleasing when you find the resource that serves as your entry point into that new domain, demystifying the space, pointing out useful packages and examples, getting you started on your work. With this article type, explore resources centered around one problem, highlighting how R helps you approach it.&lt;/li&gt;
&lt;/ul&gt;

        &lt;script&gt;window.location.href=&#39;https://rviews.rstudio.com/2021/08/04/r-views-blog-contest/&#39;;&lt;/script&gt;
      </description>
    </item>
    
    <item>
      <title>COVID-19 Data Forum: Data Journalism</title>
      <link>https://rviews.rstudio.com/2021/04/06/covid-19-data-forum-data-journalism/</link>
      <pubDate>Tue, 06 Apr 2021 00:00:00 +0000</pubDate>
      
      <guid>https://rviews.rstudio.com/2021/04/06/covid-19-data-forum-data-journalism/</guid>
      <description>
        

&lt;p&gt;The &lt;a href=&#34;https://covid19-data-forum.org/&#34;&gt;COVID-19 Data Forum&lt;/a&gt;, a joint project of the Stanford Data Science Institute and the R Consortium, is an ongoing series of multidisciplinary webinars where topic experts discuss data-related aspects of the scientific response to the pandemic. The most recent event, held on March 18, 2021, explored the role of data journalism in the pandemic. This was a bit of a departure from previous forum events&lt;sup&gt;1&lt;/sup&gt; because it focused on issues relating to using and interpreting COVID-19 data, and not on the particular kinds of COVID-19 related data that are available.&lt;/p&gt;

&lt;p&gt;I think you will find the &lt;a href=&#34;https://www.youtube.com/watch?v=Wh-GynBeEsQ&#34;&gt;webinar video&lt;/a&gt; worth watching. If you are a statistician or epidemiologist working on COVID-19, you may find the data journalists&amp;rsquo; accounts of difficulties they faced working with COVID data and statistical models instructive. But, even if you are not directly working on COVID, you may find that listening to the journalists fills in some gaps between what you know about statistics and data visualizations and what you see in the news.&lt;/p&gt;

&lt;p&gt;The data journalism event was moderated by &lt;a href=&#34;https://twitter.com/irenatfh?lang=en&#34;&gt;Dr. Irena Hwang&lt;/a&gt;, a data reporter at ProPublica. Speakers included
&lt;a href=&#34;https://journalism.columbia.edu/faculty/mark-hansen&#34;&gt;Dr. Mark Hansen&lt;/a&gt;, David and Helen Gurley Brown Professor of Journalism and Innovation at Columbia University; &lt;a href=&#34;https://twitter.com/anarina?lang=en&#34;&gt;Ana Carolina Moreno&lt;/a&gt;, a senior data journalist at TV Globo in São Paulo, Brazil; and
&lt;a href=&#34;https://twitter.com/meghanhoyer?lang=en&#34;&gt;Meghan Hoyer&lt;/a&gt;, Director of Data Reporting at the Washington Post.&lt;/p&gt;

&lt;p&gt;The video of the data journalism event is &lt;a href=&#34;https://www.youtube.com/watch?v=Wh-GynBeEsQ&#34;&gt;available here&lt;/a&gt;. The following short time map and the times referenced in my comments below should be helpful for browsing the ninety minute event.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;2:37&lt;/strong&gt; Irena Hwang introduces Mark Hansen&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;3:50&lt;/strong&gt; Start of Mark&amp;rsquo;s talk&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;19:30&lt;/strong&gt; Irena introduces Ana Carolina Moreno (Carol)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;21:10&lt;/strong&gt; Start of Carol&amp;rsquo;s talk&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;39:20&lt;/strong&gt; Irena introduces Meghan Hoyer&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;40:00&lt;/strong&gt; Start of Meghan&amp;rsquo;s talk&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;1:01:40&lt;/strong&gt; Start of discussion&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 id=&#34;mark-hansen&#34;&gt;Mark Hansen&lt;/h3&gt;

&lt;p&gt;In his talk, Mark offers an overview of the profession of data journalism that provides some historical context and emphasizes the hybrid nature of the practice which blends a hard nose detective&amp;rsquo;s drive to uncover facts with the empathy to tell stories &amp;ldquo;about who we are and how we live&amp;rdquo;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;7:00&lt;/strong&gt; Mark introduces Joseph Pulitzer&amp;rsquo;s 1904 paper &lt;a href=&#34;https://www.jstor.org/stable/25119561?refreqid=excelsior%3A9216a1bfa7873dae49d35beff9b2b01d&amp;amp;seq=33#metadata_info_tab_contents&#34;&gt;The College of Journalism&lt;/a&gt; in which Pulitzer includes Statistics as a subject journalists should study. On page 673, Pulitzer writes:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;You want statistics to tell you the truth. You can find truth there if you know how to get at it, and romance, human interest, humor and fascinating revelations as well.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;10:19&lt;/strong&gt; Mark describes a piece, &lt;a href=&#34;https://www.cjr.org/first_person/journalism-notebooks.php&#34;&gt;&lt;em&gt;An ode to reporter&amp;rsquo;s notebooks&lt;/em&gt;&lt;/a&gt;, published by Philip Eil in the &lt;em&gt;Columbia Journalism Review&lt;/em&gt; that offers a personal account of reporting: Eil writes:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;To report is to be alert and alive at a particular time and place.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;img src=&#34;mark.png&#34; height = &#34;400&#34; width=&#34;600&#34;&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;11:00&lt;/strong&gt; Mark remarks:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;when we&amp;rsquo;re thinking about bringing computation to journalism we are taking that basic curiosity that we are cultivating in our students minds &amp;hellip; and adding computational lines of inquiry to that habit of mind, that questioning why things look the way they do&amp;hellip;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;12:08&lt;/strong&gt; Mark calls attention to the report by Charles Berret and Cheryl Phillips &lt;a href=&#34;https://journalism.columbia.edu/system/files/content/teaching_data_and_computational_journalism.pdf&#34;&gt;&lt;em&gt;Teaching Data And Computational Journalism&lt;/em&gt;&lt;/a&gt; and describes some recent activities of the &lt;a href=&#34;https://brown.columbia.edu/&#34;&gt;Brown Institute&lt;/a&gt; at the Columbia School of Journalism.&lt;/p&gt;

&lt;h3 id=&#34;ana-carolina-moreno&#34;&gt;Ana Carolina Moreno&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;22:32&lt;/strong&gt; Carol introduces Brazil&amp;rsquo;s universal healthcare system and shows a schematic of the available official and unofficial COVID-19 data sources.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;26:00&lt;/strong&gt; Carol notes that a platform originally built to track SARS data was adapted to track COVID.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;27:38&lt;/strong&gt; Carol explains that, in practice, there are many obstacles making it difficult to obtain the data necessary to understand how the pandemic is developing. Some of these are called out in the following slide:&lt;/p&gt;

&lt;p&gt;&lt;img src=&#34;c2.png&#34; height = &#34;400&#34; width=&#34;600&#34;&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;30:37&lt;/strong&gt; Carol remarks that hospital data seems to be the most reliable.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;31:06&lt;/strong&gt; Carol describes how the government changed its policy for reporting deaths. The new scheme of only reporting deaths that have been confirmed in the past twenty-four hours vastly undercounts the current death rate.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;31:57&lt;/strong&gt; In an effort to obtain more reliable data, a consortium of competing journalists at local news organizations began cooperating by sharing information directly obtained from hospitals every day.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;32:35&lt;/strong&gt; Carol provides a view of day-to-day journalism at the local news organizations and describes how the data journalist scrape data on a daily basis to populate dashboards showing rolling averages and daily indicators. By focusing on the more reliable hospitalization data journalists are doing their best to track the spread of the pandemic an expose inequities in the health care system.&lt;/p&gt;

&lt;h3 id=&#34;meghan-hoyer&#34;&gt;Meghan Hoyer&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;40:07&lt;/strong&gt; Meghan begins her walk through of what last year was like for data journalists who were trying to tell the story of the pandemic in real time as it was happening.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;41:22&lt;/strong&gt; Meghan recounts her experiences trying to make sense of COVID-19 models and expresses the frustration she and other data journalists felt with the multitude of contradictory predictive models.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;44:03&lt;/strong&gt; In a memorable quote, Meghan remarks:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Models were inherently problematic and yet they were being forced upon us by society&amp;hellip;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;img src=&#34;models.png&#34; height = &#34;400&#34; width=&#34;600&#34;&gt;&lt;/p&gt;

&lt;p&gt;Consequently journalists at the AP agreed and decided that they were not going to base stories on models.&lt;/p&gt;

&lt;p&gt;In absence of reliable case data, and wanting nothing to do with the models, Meghan explains that data journalists turned to whatever data they could get their hands on to quantify the story of the pandemic.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;46:00&lt;/strong&gt; Meghan recounts how journalists used garbage pickup data as a proxy for population density to estimate where people were living in NYC and correlate it with case data.&lt;/p&gt;

&lt;p&gt;&lt;img src=&#34;garbage.png&#34; height = &#34;400&#34; width=&#34;600&#34;&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;47:30&lt;/strong&gt; Journalists struggled to find data to verify the anecdotal stories they were hearing about the the disparities in who was being affected by virus. Finding that one quarter to one third of the COVID case data was missing information on race, data journalists &amp;ldquo;hand collected&amp;rdquo; data by looking city by city to find the missing data.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;50:30&lt;/strong&gt; Meghan recounts how they turned to age adjusted data to determine the impact of the virus on communities of color.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;52:10&lt;/strong&gt;  Data journalists find that excess deaths is a reliable metric for determining the impact of what is happening on the ground.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;54:18&lt;/strong&gt; Journalists developed a survey which was returned by seven hundred schools to investigate how going back to school might be affecting students. Among their findings was that districts serving students of color were more likely to start online.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;56:35&lt;/strong&gt; Meghan discusses the &lt;a href=&#34;https://covidtracking.com/&#34;&gt;COVID-19 Tracking Project&lt;/a&gt; and the effort to sort out the impact of test positivity rates. She reports that because not all states measure the number of people who test in the same way, correctly comparing test positivity rates among states remains an unsolved problem.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;58:33&lt;/strong&gt; Meghan shares the need to &amp;ldquo;flip the numbers&amp;rdquo; to help people understand the meaning of statistics stated in terms of very large numbers. For example, saying that &amp;ldquo;Since January of last year at least 1 in 15 people who live in Alexandria, Virginia have been infected by the virus&amp;rdquo; is easier for people to understand than something like: &amp;ldquo;On March 17th there were 14 cases per 100,000 in Alexandria&amp;rdquo;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;59:53&lt;/strong&gt; Vaccination tracking is another problematic data reporting area. Not only are vaccinations reported differently from state-to-state, but the data that is reported is changing from day-to-day. The CDC is apparently still adding new fields to the vaccination data sets.&lt;/p&gt;

&lt;h3 id=&#34;the-q-a-discussion&#34;&gt;The Q &amp;amp; A Discussion&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;1:02&lt;/strong&gt; The question and answer discussion begins.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1:02:56&lt;/strong&gt; Mark talks about how visualizations evolved over the course of the pandemic.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1:06:08&lt;/strong&gt; Carol and then Meghan talk how the lessons the pandemic taught data journalists about competition and collaboration.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1:10:04&lt;/strong&gt; Meghan describes how during the pandemic data journalists became advocates for public data.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1:11:21&lt;/strong&gt; Carol answers a question about the opportunities for data journalism in Brazil.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1:15:50&lt;/strong&gt; Answers a question of how academia is supporting data journalism during the pandemic and mentions an effort to have statistical and scientific experts collaborate with data journalists.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1:20:19&lt;/strong&gt; Meghan responds to a question about technical and social challenges for data journalists during the pandemic.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1:23:10&lt;/strong&gt; Carol talks about the difference between reporting online news and television news.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1:26:01&lt;/strong&gt; Mark answers a question about communicating emotional impact in COVID reporting and ends with emphasizing the importance of communicating honestly about what we do, and do not know.&lt;/p&gt;

&lt;p&gt;&lt;sup&gt;1&lt;/sup&gt;The &lt;a href=&#34;https://www.youtube.com/watch?v=6N1p99bLXjk&#34;&gt;first forum&lt;/a&gt; on May 14, 2020 focused on the data needs and challenges of modeling and controlling the spread of COVID-19, The &lt;a href=&#34;https://www.youtube.com/watch?v=mEsDzwIMDz8&#34;&gt;second forum&lt;/a&gt; on August 13, 2020 explored what was being done to make clinical data available and useful. The &lt;a href=&#34;https://www.youtube.com/watch?v=Blab8omzrb8&#34;&gt;third forum&lt;/a&gt; on December 10, 2020 discussed the role of mobility data.&lt;/p&gt;

        &lt;script&gt;window.location.href=&#39;https://rviews.rstudio.com/2021/04/06/covid-19-data-forum-data-journalism/&#39;;&lt;/script&gt;
      </description>
    </item>
    
    <item>
      <title>Party with R: How the Community Enabled Us to Write a Book</title>
      <link>https://rviews.rstudio.com/2020/08/03/party-with-r-how-the-community-enabled-us-to-write-a-book/</link>
      <pubDate>Mon, 03 Aug 2020 00:00:00 +0000</pubDate>
      
      <guid>https://rviews.rstudio.com/2020/08/03/party-with-r-how-the-community-enabled-us-to-write-a-book/</guid>
      <description>
        


&lt;p&gt;&lt;em&gt;Isabella C. Velásquez, MS, is a data analyst committed to nonprofit work with the aim of reducing racial and socioeconomic inequities.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;“&lt;em&gt;It is like a party all the time; nobody has to worry about giving one or being invited; it is going on every day in the street and you can go down or be part of it from your window.&lt;/em&gt;” - Eleanor Clark. Without the R community, &lt;a href=&#34;https://www.datascienceineducation.com/&#34;&gt;&lt;em&gt;Data Science in Education Using R&lt;/em&gt;&lt;/a&gt; would never have happened. Most evidently, we wouldn’t have met each other without the strong R presence on Twitter that sparked a conversation about data use in education. More importantly though, are the aspects of the R community that inspired that initial discussion and enabled us to complete a book for a broad and complex field.&lt;/p&gt;
&lt;p&gt;In the &lt;a href=&#34;https://datascienceineducation.com/c01.html&#34;&gt;first chapter of our book&lt;/a&gt;, we invite data practitioners in education to the party but the R community invited us to the party first. Like any successful party, certain elements had to exist for us to join in and end up having an amazing time.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The Invitation&lt;/strong&gt; 📩&lt;/p&gt;
&lt;p&gt;As someone who started following the R community on Twitter after it was already well established and popular, I never felt the apprehension about having to ask how to get involved or interact with others. First, there are so many avenues. The R community offers many ways to let you in, whether it be replying to tweets, posting a question on community.rstudio.com, or sharing a blog post on R Weekly. Second, the R community welcomes users no matter their level. Whether it is a code snippet with a function you found cool, a blog post, or a personal side project, there are ways to engage that appeal to everybody. Members of the R community can interact how they want and as often as they want.&lt;/p&gt;
&lt;p&gt;For us, it was exciting to meet on Twitter, talk about collaborating on an education data project, and then just get started on it. We felt welcome and encouraged to do so. Because people in the R community meet other users virtually and begin side projects all the time, we didn’t have to worry about whether something like this was possible: The invitation was already there.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;An Open Door&lt;/strong&gt; 🚪&lt;/p&gt;
&lt;p&gt;In our first blog post, we described what it’s like to learn by seeing someone do the thing you want to learn. One of the best things about the R community is you constantly get to see this in action. The R community not only holds open principles but actually exhibits them whenever possible. Users post their code, projects, and drafts constantly. Just by scanning the #rstats hashtag, one can discover something new.&lt;/p&gt;
&lt;p&gt;Because others were open, we knew that we wanted to be open as well. We wrote our book on &lt;a href=&#34;https://github.com/data-edu/data-science-in-education&#34;&gt;Github&lt;/a&gt;, showing all the many changes it went through until its final completion. By having it freely available on a &lt;a href=&#34;https://www.datascienceineducation.com/&#34;&gt;website&lt;/a&gt;, we hope that it opens the door to others who’d like to learn what we did and work on their own open project as well.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Food (for Thought)&lt;/strong&gt; 🍕&lt;/p&gt;
&lt;p&gt;The R community offers so many opportunities to get feedback, advice, and information from a wide variety of users. Early on in the book development, we had a lot of questions to nail down: who is the audience? “Data is” or “data are”? How do we describe “people who work in the education field and use data and want to get more effective at it”? Finding a common language was difficult, but we were able to do this by engaging others in the wider R community. We listened to the stories of many data scientists who work in education, then found common experiences we could describe in our writing.&lt;/p&gt;
&lt;p&gt;As an example, we learned we weren’t the only ones challenged by learning a programming language while attending to full time jobs and personal lives. Knowing this, we made sure to &lt;a href=&#34;https://datascienceineducation.com/c02.html#different-strokes-for-different-data-scientists-in-education&#34;&gt;discuss these challenges in our book&lt;/a&gt; and offer various ways of engaging with the material based on the reader’s needs.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Socializing&lt;/strong&gt; 💬&lt;/p&gt;
&lt;p&gt;Throughout the process of writing DSIEUR, we asked the R community several times for other types of feedback and suggestions. We also ran into some technical issues, especially when it came to preparing our manuscript with {bookdown} to meet our publisher’s specifications, and were able to get ideas on how to resolve them. We know that the R community is a safe and encouraging place to ask questions, and this enabled us to write a stronger book.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The Next Day&lt;/strong&gt; ☀️&lt;/p&gt;
&lt;p&gt;The community participation throughout the DSIEUR process helped us define our goals and get feedback. Another wonderful aspect is that the R community engaged us back. Writing this R Views series is an example: Someone reached out to us and wanted us to reflect on what we discovered and share it with all of you. This type of engagement reminds us of what an inclusive and encouraging place the R community is and helps us come up with new ways of making sure others see the invitation as well.&lt;/p&gt;
&lt;p&gt;Thank you for reading! 🎉 We’ll be back with the fourth post on “One Writer, Five Authors” in about two weeks. Until then, we’d love to know how else the R paRty has encouraged your work, both personally and professionally. You can reach us on Twitter: Emily &lt;a href=&#34;https://twitter.com/ebovee09&#34;&gt;@ebovee09&lt;/a&gt;, Jesse &lt;a href=&#34;https://twitter.com/kierisi&#34;&gt;@kierisi&lt;/a&gt;, Joshua &lt;a href=&#34;https://twitter.com/jrosenberg6432&#34;&gt;@jrosenberg6432&lt;/a&gt;, Ryan &lt;a href=&#34;https://twitter.com/RyanEs&#34;&gt;@RyanEs&lt;/a&gt;, and me &lt;a href=&#34;https://twitter.com/ivelasq3&#34;&gt;@ivelasq3&lt;/a&gt;.&lt;/p&gt;

        &lt;script&gt;window.location.href=&#39;https://rviews.rstudio.com/2020/08/03/party-with-r-how-the-community-enabled-us-to-write-a-book/&#39;;&lt;/script&gt;
      </description>
    </item>
    
    <item>
      <title>Some 2020 R Conferences</title>
      <link>https://rviews.rstudio.com/2020/02/05/some-2020-r-conferences/</link>
      <pubDate>Wed, 05 Feb 2020 00:00:00 +0000</pubDate>
      
      <guid>https://rviews.rstudio.com/2020/02/05/some-2020-r-conferences/</guid>
      <description>
        &lt;p&gt;rstudio::conf kicked off the 2020 season for R conferences last week with record attendance somewhere north of twenty-one hundred. Session topics ranged from business to science, marketing to medicine and attracted R users with very varied backgrounds including DevOps professionals, data scientists, journalists, physicians, statisticians, R package developers, Shiny developers and more. Although it is true that the San Francisco Bay Area is home to a large R Community, and that a great deal of planning and promotion went into making rstudio::conf a success, I don&amp;rsquo;t think that the enthusiasm and energy that permeated the conference was a local phenomenon. I expect 2020 to be a good year for R conferences worldwide. Here is my short, somewhat eclectic, and by no means complete list of upcoming 2020 R events.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;While not an R specific conference, the &lt;a href=&#34;https://ww2.amstat.org/meetings/csp/2020/?utm_source=informz&amp;amp;utm_medium=email&amp;amp;utm_campaign=asa&amp;amp;_zs=JaUQh1&amp;amp;_zl=mo2I6&#34;&gt;Conference on Statistical Practice&lt;/a&gt; (Sacramento, February 20 - 22) coming up soon will have some interesting R content. I am particularly looking forward to the talk by Songtao Wang on &lt;a href=&#34;https://ww2.amstat.org/meetings/csp/2020/onlineprogram/AbstractDetails.cfm?AbstractID=303990&#34;&gt;Thinking Statistically in Social Science and Humanities&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;The &lt;a href=&#34;https://www.ire.org/events-and-training/conferences/nicar-2020&#34;&gt;NICAR Confererence&lt;/a&gt; produced by the nonprofit &lt;a href=&#34;https://www.ire.org/&#34;&gt;Investigative Reporters and Editors Inc.&lt;/a&gt; (New Orleans, March 5 - 8) is a gathering of R and Python savvy journalists using R as an every day tool. Last year, I found the workshops and R training sessions to be outstanding.&lt;/li&gt;
&lt;li&gt;The &lt;a href=&#34;http://www.populationassociation.org/sidebar/annual-meeting/&#34;&gt;PAA Annual Meeting&lt;/a&gt; (Washington D.C., April 22 - 25) is an opportunity to meet demographers, economists public health professionals and sociologists using R.&lt;/li&gt;
&lt;li&gt;The &lt;a href=&#34;https://rstats.ai/nyr/#about&#34;&gt;R Conference New York&lt;/a&gt; (May, 7 - 9), the re-branded NY R Conference of previous years, promises to be the major East Coast R event of the year with a diverse and talented roster of speakers.&lt;/li&gt;
&lt;li&gt;The European R Users meeting, &lt;a href=&#34;https://2020.erum.io/&#34;&gt;eRUM&lt;/a&gt; (May, 27 - 30) will be the first major European R conference of the season. Note that Sharon Machlis, Director of Data &amp;amp; Analytics at IDG Communications will be one of the keynote speakers. 2020 may be the year that journalism captures the attention of the R Community.&lt;/li&gt;
&lt;li&gt;The Symposium on Data Science &amp;amp; Statistics, &lt;a href=&#34;https://ww2.amstat.org/meetings/sdss/2020/onlineprogram/index.cfm&#34;&gt;SDSS&lt;/a&gt;, (Pittsburgh, June 3 - 6) has become one of my favorite statistics conferences. Smaller and more manageable than the JSM, talks are sure to be infused with R content. Note that there will be a session on &lt;a href=&#34;https://ww2.amstat.org/meetings/sdss/2020/onlineprogram/Program.cfm?date=06-05-20&#34;&gt;Data Journalism and Visualization&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Now in its twelfth year, &lt;a href=&#34;http://uic.cvent.com/events/2020-r-finance-call-for-presentations/event-summary-add8ccef16bc42778b301c23ccab1a9e.aspx&#34;&gt;R / Finance&lt;/a&gt; (Chicago, June 5 - 6) has set the bar for small, single-session, collegial, technical R conferences. Focusing on Financial applications with a serious dose of advanced time series applications, R / Finance provides the opportunity to interact with professionals who put their money on R.&lt;/li&gt;
&lt;li&gt;Always the pivotal event of the R Community, &lt;a href=&#34;https://user2020.r-project.org/&#34;&gt;useR! 2020&lt;/a&gt; (St. Louis, July 7 -10) is sure to be a great event and a good time. The final program has not been published (Note that the &lt;a href=&#34;https://user2020.r-project.org/news/2019/11/20/call-for-abstracts/&#34;&gt;Call for papers&lt;/a&gt; is still open.), but the &lt;a href=&#34;https://user2020.r-project.org/program/tutorials/&#34;&gt;tutorial sessions&lt;/a&gt; alone indicate that useR! 2020 be an outstanding educational opportunity.&lt;br /&gt;&lt;/li&gt;
&lt;li&gt;The &lt;a href=&#34;https://user2020muc.r-project.org/&#34;&gt;useR! 2020 European Hub Conference&lt;/a&gt; (Munich, July 7 - 10) will feature live talks as well as video streaming sessions from useR! 2020 in St. Louis. This innovative format promises to be an important event in its own right and a satisfying community experience.&lt;/li&gt;
&lt;li&gt;The &lt;a href=&#34;https://ww2.amstat.org/meetings/jsm/2020/&#34;&gt;JSM&lt;/a&gt; (Philadelphia, August 1 - 6), the mother of all statistical conferences, is expecting more than 6,500 attendees from 52 countries. This is an event you have to train for, but with some preparation and a little planning the JSM can be an opportunity to interact with statisticians who depend on the deep statistical knowledge embedded in R.&lt;/li&gt;
&lt;li&gt;The Bioconductor Conference, &lt;a href=&#34;https://bioc2020.bioconductor.org/&#34;&gt;BioC 2020&lt;/a&gt;, the event where &lt;em&gt;Software and Biology Connect&lt;/em&gt; (Boston, July 29 - 30) is the premier conference for R and Genomics. If you have an interest in learning about cutting edge statistical applications using the big data of modern Biology, this the conference to attend.&lt;br /&gt;&lt;/li&gt;
&lt;li&gt;The &lt;a href=&#34;http://whyr.pl/2020/&#34;&gt;Why R? 2020 Conference&lt;/a&gt; (Warsaw, August 27 - 30) is not only positioned to be the third significant European R conference of the year, the organizers have developed an ambitious and innovative strategy of supporting a number of satellite pre-meetings that stretch from Warsaw to Limerick and South Africa. I think this is a fantastic community initiative that represents a commitment to build the R Community in under served areas.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;img src=&#34;whyR.png&#34; height = &#34;400&#34; width=&#34;600&#34;&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;There is no website yet, but it is breaking news that R / Medicine 2020 will be held in Philadelphia from August 27th to 29th. In its third year, R / Medicine is establishing itself as the R conference for physicians seeking to advance clinical practice with R fueled data science.&lt;br /&gt;&lt;/li&gt;
&lt;li&gt;The &lt;a href=&#34;https://latin-r.com/en&#34;&gt;LatinR 2020 Conference&lt;/a&gt; (Montevideo, October 7 - 9) will be a major South American event. The &lt;a href=&#34;https://latin-r.com/blog/call-for-papers&#34;&gt;Call for papers&lt;/a&gt; is open. Look &lt;a href=&#34;https://latin-r.com/previous-editions/&#34;&gt;here&lt;/a&gt; for previous programs.&lt;br /&gt;&lt;/li&gt;
&lt;li&gt;The &lt;a href=&#34;https://bioconductor.github.io/BiocAsia2020/&#34;&gt;BiocAsia 2020 Conference&lt;/a&gt; (Beijing, October 17 - 18), the yearly Asian Bioconductor event, has confirmed that Robert Gentleman will be speaking.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Other conferences on my radar are:&lt;br /&gt;
* The &lt;a href=&#34;https://rstats.ai/dublinr/&#34;&gt;R Conference Dublin&lt;/a&gt; (June)&lt;br /&gt;
* The CascadiaRConf (Eugene, OR)&lt;br /&gt;
* R / Pharma which will most likely be held at Harvard University in August.&lt;br /&gt;
* BioCEurope which will likely be held in December.&lt;/p&gt;

&lt;p&gt;Please let me know what upcoming conferences I may have missed by adding them to the comments section of this post.&lt;/p&gt;

        &lt;script&gt;window.location.href=&#39;https://rviews.rstudio.com/2020/02/05/some-2020-r-conferences/&#39;;&lt;/script&gt;
      </description>
    </item>
    
  </channel>
</rss>
