INSERT GRAPHIC HERE (include hyperlink in image)
Subtitle or Short Description Goes Here
ideally one sentence >
| --- | |
| title: "Untitled" | |
| author: "Emily Riederer" | |
| date: "5/15/2019" | |
| output: html_document | |
| --- | |
| ```{r} | |
| # dummy data | |
| data <- data.frame( |
| --- | |
| title: "RGL Example" | |
| author: "John Muschelli" | |
| date: "10/29/2018" | |
| output: html_document | |
| --- | |
| ```{r setup, include=FALSE} | |
| knitr::opts_chunk$set(echo = TRUE) | |
| ``` |
| library(shiny) | |
| library(ggplot2) | |
| shinyServer(function(input,output)({ | |
| # x contains all the observations of the x variable selected by the user. X is a reactive function | |
| x <- reactive({ | |
| iris[,as.numeric(input$var1)] | |
| }) | |
| # x contains all the observations of the y variable selected by the user. Y is a reactive function | |
| y <- reactive({ | |
| iris[,as.numeric(input$var2)] |
| # You should download the ffmpeg source code from the http://ffmpeg.org/ | |
| # libx264 need yasm, so we install yasm first | |
| sudo apt-get install yasm | |
| sudo apt-get install libx264-dev | |
| # then, install the required packages | |
| sudo apt-get install libfaac-dev | |
| sudo apt-get install libmp3lame-dev | |
| sudo apt-get install libtheora-dev |
| # Sample PBS job script | |
| # | |
| # Copy this script, customize it and then submit it with the ``qsub'' | |
| # command. For example: | |
| # | |
| # cp pbs-template.sh myjob-pbs.sh | |
| # {emacs|vi} myjob-pbs.sh | |
| # qsub myjob-pbs.sh | |
| # | |
| # PBS directives are fully documented in the ``qsub'' man page. Directives |