You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
266 B

## This app requires OpenCPU 1.0.1 or higher !!!!
##
#' @export
rmdtext <- function(text){
writeLines(text, con="input.Rmd");
knit2html("input.Rmd", output="output.html");
invisible();
}
test <- function(){
f <- c(1, 2, 3, 4, 9, 2, 5, 9, 3);
plot(f);
}