From 3ee2a5512db498ba42e96d344a990438d10404f6 Mon Sep 17 00:00:00 2001 From: Karl Broman Date: Wed, 9 Oct 2013 20:45:52 -0500 Subject: [PATCH] Slight changes to two links to R-manual, for consistency - Most links were to .../R-manual/R-devel/... but two were to .../R-manual/R-patched/...; changed the R-patched ones to R-devel, for consistency. - Changed "this article on [R startup]" to have the "this article on" included in the underlined bit; seemed a bit more clear. --- _includes/tutorial/building-outputs.md | 2 +- _includes/tutorial/run-and-debug.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_includes/tutorial/building-outputs.md b/_includes/tutorial/building-outputs.md index 917085c68..c2159f8d9 100644 --- a/_includes/tutorial/building-outputs.md +++ b/_includes/tutorial/building-outputs.md @@ -10,7 +10,7 @@ Start by deciding the kind of values your output component is going to receive f Whatever value the user's R code returns is going to need to somehow be turned into a JSON-compatible value (Shiny uses [RJSONIO](http://cran.r-project.org/web/packages/RJSONIO/index.html) to do the conversion). If the user's code is naturally going to return something RJSONIO-compatible – like a character vector, a data frame, or even a list that contains atomic vectors – then you can just direct the user to use a function on the server. However, if the output needs to undergo some other kind of transformation, then you'll need to write a wrapper function that your users will use instead (analogous to `renderPlot` or `renderTable`). -For example, if the user wants to output [time series objects](http://stat.ethz.ch/R-manual/R-patched/library/stats/html/ts.html) then you might create a `renderTimeSeries` function that knows how to translate `ts` objects to a simple list or data frame: +For example, if the user wants to output [time series objects](http://stat.ethz.ch/R-manual/R-devel/library/stats/html/ts.html) then you might create a `renderTimeSeries` function that knows how to translate `ts` objects to a simple list or data frame: {% highlight r %} diff --git a/_includes/tutorial/run-and-debug.md b/_includes/tutorial/run-and-debug.md index 09071bd6b..d8950b7d9 100644 --- a/_includes/tutorial/run-and-debug.md +++ b/_includes/tutorial/run-and-debug.md @@ -66,7 +66,7 @@ Alternatively, you can specify the [recover](http://stat.ethz.ch/R-manual/R-deve options(error = recover) {% endhighlight %} -If you want to set the error option automatically for every R session, you can do this in your .Rprofile file as described in this article on [R Startup](http://stat.ethz.ch/R-manual/R-patched/library/base/html/Startup.html). +If you want to set the error option automatically for every R session, you can do this in your .Rprofile file as described in [this article on R Startup](http://stat.ethz.ch/R-manual/R-devel/library/base/html/Startup.html).