├── .gitignore
├── header.html
├── favicon.ico
├── images
├── GitHub_pages_1.png
├── GitHub_pages_2.png
├── RStudio-screenshot.png
└── tools-logo-transparent.png
├── site_libs
├── bootstrap-3.3.5
│ ├── css
│ │ └── fonts
│ │ │ ├── Lato.ttf
│ │ │ ├── Raleway.ttf
│ │ │ ├── Roboto.ttf
│ │ │ ├── Ubuntu.ttf
│ │ │ ├── LatoBold.ttf
│ │ │ ├── LatoItalic.ttf
│ │ │ ├── NewsCycle.ttf
│ │ │ ├── OpenSans.ttf
│ │ │ ├── RobotoBold.ttf
│ │ │ ├── OpenSansBold.ttf
│ │ │ ├── RalewayBold.ttf
│ │ │ ├── RobotoLight.ttf
│ │ │ ├── RobotoMedium.ttf
│ │ │ ├── NewsCycleBold.ttf
│ │ │ ├── OpenSansItalic.ttf
│ │ │ ├── OpenSansLight.ttf
│ │ │ ├── SourceSansPro.ttf
│ │ │ ├── SourceSansProBold.ttf
│ │ │ ├── OpenSansBoldItalic.ttf
│ │ │ ├── OpenSansLightItalic.ttf
│ │ │ ├── SourceSansProItalic.ttf
│ │ │ └── SourceSansProLight.ttf
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ ├── js
│ │ └── npm.js
│ └── shim
│ │ ├── html5shiv.min.js
│ │ └── respond.min.js
├── font-awesome-5.0.13
│ ├── fonts
│ │ ├── fa-solid-900.ttf
│ │ ├── fa-brands-400.ttf
│ │ └── fa-regular-400.ttf
│ ├── css
│ │ └── fa-svg-with-js.css
│ └── js
│ │ └── fa-v4-shims.min.js
├── font-awesome-5.1.0
│ └── webfonts
│ │ ├── fa-brands-400.eot
│ │ ├── fa-brands-400.ttf
│ │ ├── fa-solid-900.eot
│ │ ├── fa-solid-900.ttf
│ │ ├── fa-solid-900.woff
│ │ ├── fa-brands-400.woff
│ │ ├── fa-brands-400.woff2
│ │ ├── fa-regular-400.eot
│ │ ├── fa-regular-400.ttf
│ │ ├── fa-regular-400.woff
│ │ ├── fa-solid-900.woff2
│ │ └── fa-regular-400.woff2
├── font-awesome-4.5.0
│ └── fonts
│ │ └── fontawesome-webfont.ttf
├── jqueryui-1.11.4
│ ├── images
│ │ ├── ui-icons_444444_256x240.png
│ │ ├── ui-icons_555555_256x240.png
│ │ ├── ui-icons_777620_256x240.png
│ │ ├── ui-icons_777777_256x240.png
│ │ ├── ui-icons_cc0000_256x240.png
│ │ └── ui-icons_ffffff_256x240.png
│ ├── README
│ ├── jquery-ui.structure.min.css
│ └── jquery-ui.theme.min.css
├── highlightjs-9.12.0
│ ├── default.css
│ └── textmate.css
├── navigation-1.1
│ ├── sourceembed.js
│ ├── codefolding.js
│ └── tabsets.js
└── tocify-1.9.1
│ └── jquery.tocify.css
├── README.md
├── index.Rmd
├── links.Rmd
├── styles.css
├── footer.html
├── _site.yml
├── bookdown.Rmd
├── rstudio.Rmd
├── jekyll.Rmd
├── Git-RStudio.Rmd
├── set-up.Rmd
├── RMarkdown.Rmd
├── shiny.Rmd
├── packages.Rmd
├── websites.Rmd
├── README.html
├── index.html
├── links.html
├── bookdown.html
├── rstudio.html
└── Git-RStudio.html
/.gitignore:
--------------------------------------------------------------------------------
1 | .Rproj.user
2 | .Rhistory
3 | .RData
4 | .Ruserdata
5 | *.Rproj
6 |
--------------------------------------------------------------------------------
/header.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/favicon.ico
--------------------------------------------------------------------------------
/images/GitHub_pages_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/images/GitHub_pages_1.png
--------------------------------------------------------------------------------
/images/GitHub_pages_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/images/GitHub_pages_2.png
--------------------------------------------------------------------------------
/images/RStudio-screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/images/RStudio-screenshot.png
--------------------------------------------------------------------------------
/images/tools-logo-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/images/tools-logo-transparent.png
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/Lato.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/Lato.ttf
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/Raleway.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/Raleway.ttf
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/Roboto.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/Roboto.ttf
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/Ubuntu.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/Ubuntu.ttf
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/LatoBold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/LatoBold.ttf
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/LatoItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/LatoItalic.ttf
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/NewsCycle.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/NewsCycle.ttf
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/OpenSans.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/OpenSans.ttf
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/RobotoBold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/RobotoBold.ttf
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/OpenSansBold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/OpenSansBold.ttf
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/RalewayBold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/RalewayBold.ttf
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/RobotoLight.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/RobotoLight.ttf
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/RobotoMedium.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/RobotoMedium.ttf
--------------------------------------------------------------------------------
/site_libs/font-awesome-5.0.13/fonts/fa-solid-900.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/font-awesome-5.0.13/fonts/fa-solid-900.ttf
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/NewsCycleBold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/NewsCycleBold.ttf
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/OpenSansItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/OpenSansItalic.ttf
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/OpenSansLight.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/OpenSansLight.ttf
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/SourceSansPro.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/SourceSansPro.ttf
--------------------------------------------------------------------------------
/site_libs/font-awesome-5.0.13/fonts/fa-brands-400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/font-awesome-5.0.13/fonts/fa-brands-400.ttf
--------------------------------------------------------------------------------
/site_libs/font-awesome-5.0.13/fonts/fa-regular-400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/font-awesome-5.0.13/fonts/fa-regular-400.ttf
--------------------------------------------------------------------------------
/site_libs/font-awesome-5.1.0/webfonts/fa-brands-400.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/font-awesome-5.1.0/webfonts/fa-brands-400.eot
--------------------------------------------------------------------------------
/site_libs/font-awesome-5.1.0/webfonts/fa-brands-400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/font-awesome-5.1.0/webfonts/fa-brands-400.ttf
--------------------------------------------------------------------------------
/site_libs/font-awesome-5.1.0/webfonts/fa-solid-900.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/font-awesome-5.1.0/webfonts/fa-solid-900.eot
--------------------------------------------------------------------------------
/site_libs/font-awesome-5.1.0/webfonts/fa-solid-900.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/font-awesome-5.1.0/webfonts/fa-solid-900.ttf
--------------------------------------------------------------------------------
/site_libs/font-awesome-5.1.0/webfonts/fa-solid-900.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/font-awesome-5.1.0/webfonts/fa-solid-900.woff
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/SourceSansProBold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/SourceSansProBold.ttf
--------------------------------------------------------------------------------
/site_libs/font-awesome-5.1.0/webfonts/fa-brands-400.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/font-awesome-5.1.0/webfonts/fa-brands-400.woff
--------------------------------------------------------------------------------
/site_libs/font-awesome-5.1.0/webfonts/fa-brands-400.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/font-awesome-5.1.0/webfonts/fa-brands-400.woff2
--------------------------------------------------------------------------------
/site_libs/font-awesome-5.1.0/webfonts/fa-regular-400.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/font-awesome-5.1.0/webfonts/fa-regular-400.eot
--------------------------------------------------------------------------------
/site_libs/font-awesome-5.1.0/webfonts/fa-regular-400.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/font-awesome-5.1.0/webfonts/fa-regular-400.ttf
--------------------------------------------------------------------------------
/site_libs/font-awesome-5.1.0/webfonts/fa-regular-400.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/font-awesome-5.1.0/webfonts/fa-regular-400.woff
--------------------------------------------------------------------------------
/site_libs/font-awesome-5.1.0/webfonts/fa-solid-900.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/font-awesome-5.1.0/webfonts/fa-solid-900.woff2
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Website for the RWorkflow INCOIS Short Course
2 |
3 | * Simple website built with R Markdown 'Build Website' function.
4 | * Click the 'Build Website' button in RStudio to make.
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/OpenSansBoldItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/OpenSansBoldItalic.ttf
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/OpenSansLightItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/OpenSansLightItalic.ttf
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/SourceSansProItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/SourceSansProItalic.ttf
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/css/fonts/SourceSansProLight.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/css/fonts/SourceSansProLight.ttf
--------------------------------------------------------------------------------
/site_libs/font-awesome-4.5.0/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/font-awesome-4.5.0/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/site_libs/font-awesome-5.1.0/webfonts/fa-regular-400.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/font-awesome-5.1.0/webfonts/fa-regular-400.woff2
--------------------------------------------------------------------------------
/site_libs/jqueryui-1.11.4/images/ui-icons_444444_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/jqueryui-1.11.4/images/ui-icons_444444_256x240.png
--------------------------------------------------------------------------------
/site_libs/jqueryui-1.11.4/images/ui-icons_555555_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/jqueryui-1.11.4/images/ui-icons_555555_256x240.png
--------------------------------------------------------------------------------
/site_libs/jqueryui-1.11.4/images/ui-icons_777620_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/jqueryui-1.11.4/images/ui-icons_777620_256x240.png
--------------------------------------------------------------------------------
/site_libs/jqueryui-1.11.4/images/ui-icons_777777_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/jqueryui-1.11.4/images/ui-icons_777777_256x240.png
--------------------------------------------------------------------------------
/site_libs/jqueryui-1.11.4/images/ui-icons_cc0000_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/jqueryui-1.11.4/images/ui-icons_cc0000_256x240.png
--------------------------------------------------------------------------------
/site_libs/jqueryui-1.11.4/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/jqueryui-1.11.4/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RVerse-Tutorials/RWorkflow-Workshop/master/site_libs/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/site_libs/highlightjs-9.12.0/default.css:
--------------------------------------------------------------------------------
1 | .hljs-literal {
2 | color: #990073;
3 | }
4 |
5 | .hljs-number {
6 | color: #099;
7 | }
8 |
9 | .hljs-comment {
10 | color: #998;
11 | font-style: italic;
12 | }
13 |
14 | .hljs-keyword {
15 | color: #900;
16 | font-weight: bold;
17 | }
18 |
19 | .hljs-string {
20 | color: #d14;
21 | }
22 |
--------------------------------------------------------------------------------
/site_libs/highlightjs-9.12.0/textmate.css:
--------------------------------------------------------------------------------
1 | .hljs-literal {
2 | color: rgb(88, 72, 246);
3 | }
4 |
5 | .hljs-number {
6 | color: rgb(0, 0, 205);
7 | }
8 |
9 | .hljs-comment {
10 | color: rgb(76, 136, 107);
11 | }
12 |
13 | .hljs-keyword {
14 | color: rgb(0, 0, 255);
15 | }
16 |
17 | .hljs-string {
18 | color: rgb(3, 106, 7);
19 | }
20 |
--------------------------------------------------------------------------------
/site_libs/navigation-1.1/sourceembed.js:
--------------------------------------------------------------------------------
1 |
2 | window.initializeSourceEmbed = function(filename) {
3 | $("#rmd-download-source").click(function() {
4 | var src = $("#rmd-source-code").html();
5 | var a = document.createElement('a');
6 | a.href = "data:text/x-r-markdown;base64," + src;
7 | a.download = filename;
8 | document.body.appendChild(a);
9 | a.click();
10 | document.body.removeChild(a);
11 | });
12 | };
13 |
--------------------------------------------------------------------------------
/site_libs/jqueryui-1.11.4/README:
--------------------------------------------------------------------------------
1 | This a jQuery UI custom build, downloaded from:
2 | http://jqueryui.com/download/#!version=1.11.4&components=1111111111110111111111111111111111111
3 |
4 | It includes all components except the datepicker, because it conflicts with
5 | bootstrap-datepicker that is packaged with Shiny.
6 |
7 | The copy of jQuery that is bundled with the download, under external/, is not
8 | included because Shiny already has its own copy of jQuery.
9 |
--------------------------------------------------------------------------------
/site_libs/bootstrap-3.3.5/js/npm.js:
--------------------------------------------------------------------------------
1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment.
2 | require('../../js/transition.js')
3 | require('../../js/alert.js')
4 | require('../../js/button.js')
5 | require('../../js/carousel.js')
6 | require('../../js/collapse.js')
7 | require('../../js/dropdown.js')
8 | require('../../js/modal.js')
9 | require('../../js/tooltip.js')
10 | require('../../js/popover.js')
11 | require('../../js/scrollspy.js')
12 | require('../../js/tab.js')
13 | require('../../js/affix.js')
--------------------------------------------------------------------------------
/index.Rmd:
--------------------------------------------------------------------------------
1 | ---
2 | title: "R Workflow Short-Course"
3 | ---
4 |
5 |
6 | [Course Announcement](http://www.incois.gov.in/ITCOocean/ftsf.jsp)
7 |
8 |
9 |
10 | This short-course will cover Report-writing and Code documentation with R:
11 |
12 | - Basic workflow using RStudio, Git and GitHub
13 | - Intro to R Markdown
14 | - Creating simple websites from RStudio
15 | - Build an R package with RStudio
16 | - Creating simple websites from R packages on GitHub
17 | - Creating a book with R Markdown: Intro to Bookdown.
18 | - Creating and publishing RShiny applications
19 |
20 |

This short-course will cover Report-writing and Code documentation with R:
389 |————————————
401 |The bookdown package makes it easy to create books with R Markdown and RStudio. These can be easily published online and in various formats: HTML, PDF, ePub, and Kindle. Read about bookdown and see hundreds of online books written with it at bookdown.org.
469 |Once you are ready to write your own book, read the online documentation.
470 |Examples:
471 |Download a zip file of the bookdown-demo repository. You can use the ‘download zip file’ button on the GitHub repository or you can navigate to your ‘RWorkflow’ folder in RStudio and click ‘More’ in the Files panel and select ‘Set as working directory’. Then issue these commands.
478 |library(RWorkflowsetup)
479 | download.repo("bookdown-demo")
480 | INCOIS participants: You will find a copy of the repository in the RWorkflow directory that you copied from the thumb drive.
481 |This is a copy of the original bookdown-demo by Yihui Xie, the creator of the bookdown package, with a few changes so it works immediately with GitHub.
482 |Your book should appear.
492 |You can host your book many places. To do so on GitHub, do the following.
496 |bookdown-demo as the name and <yourbasedir>\RWorkflow as the local path. This assumes that the bookdown-demo folder is in the RWorkflow directory. If not, replace the path with the directory where you put the bookdown-demo folder.GitHub Pages. Change the source to master branch/docs folder and click save.https://<yourname>.github.io/bookdown-demo/ in a few minutes.If you have never worked with R, you can get a basic familiarity by going through this free tutorial. Takes about 4 hours.
471 |You can also learn R straight from within R using the swirl package. This doesn’t require internet access except to install the package.
472 |Here is another basic R introduction from ComputerWorld.
473 |When you open RStudio you will see 4 panels:
477 |
479 | RStudio-panels
480 |That should give you a new project.
492 |require(graphics)
501 | ## Annette Dobson (1990) "An Introduction to Generalized Linear Models".
502 | ## Page 9: Plant Weight Data.
503 | ctl <- c(4.17,5.58,5.18,6.11,4.50,4.61,5.17,4.53,5.33,5.14)
504 | trt <- c(4.81,4.17,4.41,3.59,5.87,3.83,6.03,4.89,4.32,4.69)
505 | group <- gl(2, 10, 20, labels = c("Ctl","Trt"))
506 | weight <- c(ctl, trt)
507 | lm.D9 <- lm(weight ~ group)
508 | opar <- par(mfrow = c(2,2), oma = c(0, 0, 1.1, 0))
509 | plot(lm.D9, las = 1) # Residuals, Fitted, ...
510 | par(opar)
511 | Read through the following sections of the R for Data Science book and work through the examples.
522 |R for Data Science is a great book to introduce you to working with data in R, but we are not going to be doing that in this workshop.
528 |You can read a whole book about Git and R Happy Git with R.
471 |We will not be using Git in RStudio because it can be hard to set-up and hard to debug if you run into problems. If you want to use it, read these instructions.
472 |In particular, read the part about how to set-up so you don’t have to enter your username and password for every commmit.
473 |The ‘RWorkflowsetup’ package has a download function. This function will create a folder with the name of the repository. Here is code to download the repository ‘Rmarkdown-Tutorial’. For others, just change the name of the repository.
479 |library(RWorkflowsetup)
480 | repo = "Test"
481 | download.repo(repo)
482 | From RStudio, go to the menu option ‘File->New Project…’. Then from the resulting dialog, choose “Version Control”. Then choose “Git”. Then it asks for a “repository URL”. Supply this: https://github.com/RVerse-Tutorials/Test and leave the “Project Directory Name” empty. And then choose a directory in which to put it and click OK.
git remote rm origin
490 | This detaches the cloned repository from the remote repository on GitHub from where you cloned it. That will pull the RStudio project off of GitHub, make a local clone of it on your hard drive and open.
491 |Go to https://github.com/RVerse-Tutorials/Test and click ‘Clone or download’ and chose ‘Download Zip’. Unzip and you’ll probably want to remove ‘master’ added to the end of the repository name.
495 |If you chose, ‘Clone in Desktop’, you’ll need to open a terminal window, navigate to the new folder you just downloaded, and run the git code git remote rm origin from within the terminal to detach the repository from the RVerse-Tutorials GitHub account.
We will not be doing this in this short course, but often you will want to install packages with C++ code. To do that, you will need Rtools (Windows) or Xcode (Mac)
501 | 505 |