Meetup_Collab_Overview

Jered Ataky, Dan Rosenfeld, Magnus Skonberg, & Rick Sughrue(RickRN)
September, 2020

This presentation created using RStudio.
Stored in GitHub Project Team repository.

Collaboration Overview

Tools used:

Process

  • Discussion of general approach/technique, individual code to date
  • Screen sharing especially for RStudio code essential
  • Incremental coding/refining coding

Continuous Improvement - Next steps

  • [How to] use Version Control System (VCS)
  • Install Git / Configuration w/GitHub
  • GitHub: Create new project then link in RStudio
  • Click here to screen shot
  • Notice: Upper right - new Git TAB, lower right - FILES tab local

  • Yes …. more trial/error configuring GitHub for PUSH/PULL features

Magnus Challenge!

More elegant RMD file for HTML output:

# Add top of RMD:
#output: 
#  openintro::lab_report: default
#  html_document:
#    number_sections: yes

# Add following HTML in "narrative" space:
# Project 1:  Data Analysis - Chess Tournament
#
#<style>
#div.blue { background-color:#e6f0ff; border-radius: 5px; padding: 20px;}
#</style>
#<div class = "blue">
#
#(your narrative here)
#
#</div> \hfill\break
#

Key takeaway

Professor Andrew Catlin: almost a cliche that “Data Science is a team sport!”

FYI: Following 3 slides generated by blank R Presentation

First Slide

For more details on authoring R presentations please visit https://support.rstudio.com/hc/en-us/articles/200486468.

  • Bullet 1
  • Bullet 2
  • Bullet 3

Slide With Code

summary(cars)
     speed           dist       
 Min.   : 4.0   Min.   :  2.00  
 1st Qu.:12.0   1st Qu.: 26.00  
 Median :15.0   Median : 36.00  
 Mean   :15.4   Mean   : 42.98  
 3rd Qu.:19.0   3rd Qu.: 56.00  
 Max.   :25.0   Max.   :120.00  

Slide With Plot

plot of chunk unnamed-chunk-3