This repository has been archived by the owner on Oct 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from UniExeterRSE/dev
Release v1.1.0
- Loading branch information
Showing
18 changed files
with
52 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
|
||
# Note: run from the project root directory | ||
|
||
starting_dir=$(pwd) | ||
cd R_notebooks/ | ||
tar -cvzf ../assets/materials/course_materials.tar.gz 01_Introducing_Tidyverse.Rmd 02_Loading_data.Rmd 03_Manipulating_a_dataframe.Rmd 04_Piping.Rmd 05_Combining_datasets.Rmd 06_Reshaping_data.Rmd 07_Strings_and_dates.Rmd 08_Summary.Rmd Working_with_data_in_R.Rproj data/ | ||
zip -r ../assets/materials/course_materials.zip 01_Introducing_Tidyverse.Rmd 02_Loading_data.Rmd 03_Manipulating_a_dataframe.Rmd 04_Piping.Rmd 05_Combining_datasets.Rmd 06_Reshaping_data.Rmd 07_Strings_and_dates.Rmd 08_Summary.Rmd Working_with_data_in_R.Rproj data/ | ||
tar -cvzf ../assets/materials/complete_course_materials.tar.gz 01_Introducing_Tidyverse_complete.Rmd 02_Loading_data_complete.Rmd 03_Manipulating_a_dataframe_complete.Rmd 04_Piping_complete.Rmd 05_Combining_datasets_complete.Rmd 06_Reshaping_data_complete.Rmd 07_Strings_and_dates_complete.Rmd 08_Summary.Rmd Working_with_data_in_R.Rproj data/ | ||
zip -r ../assets/materials/complete_course_materials.zip 01_Introducing_Tidyverse_complete.Rmd 02_Loading_data_complete.Rmd 03_Manipulating_a_dataframe_complete.Rmd 04_Piping_complete.Rmd 05_Combining_datasets_complete.Rmd 06_Reshaping_data_complete.Rmd 07_Strings_and_dates_complete.Rmd 08_Summary.Rmd Working_with_data_in_R.Rproj data/ | ||
cd "$starting_dir" |