Displaying 7 results from an estimated 7 matches for "rtidy".
Did you mean:
tidy
2007 Jan 25
3
r tidy
Is there an r-tidy program? something that works similar to perl
tidy? http://perltidy.sourceforge.net/ which takes program code
and reformats white space with standard indentations and spacing?
I did find a ruby based rtidy, but that is for html formatting.
// George
--
George Georgalis, systems architect, administrator <IXOYE><
2010 Dec 13
0
batchfiles 0.6-0
...stry (0) (*)
Rcmd.bat - like Rcmd.exe but finds R from registry (h) (*)
Rgui.bat - like Rgui.exe but finds R from registry (0) (*)
RguiStart.bat - like Rgui.bat but arg1 defines folder to start R in (*)
Rscript.bat - run .R script (h) (*)
Rterm.bat - like rterm.exe but finds R from registry (h) (*)
Rtidy.bat - reformat a .R file, e.g. Rtidy myfile.R > outfile.R (d)
Rtools.bat - place Rtools on path for remainder of console session (0) (*)
Rversions.bat - list R and set R version in registry, e.g. on Vista:
el cmd/c Rversions R-2.12.0 (0)
show-svn-info.hta - show svn info if current folder is an...
2010 Dec 13
0
batchfiles 0.6-0
...stry (0) (*)
Rcmd.bat - like Rcmd.exe but finds R from registry (h) (*)
Rgui.bat - like Rgui.exe but finds R from registry (0) (*)
RguiStart.bat - like Rgui.bat but arg1 defines folder to start R in (*)
Rscript.bat - run .R script (h) (*)
Rterm.bat - like rterm.exe but finds R from registry (h) (*)
Rtidy.bat - reformat a .R file, e.g. Rtidy myfile.R > outfile.R (d)
Rtools.bat - place Rtools on path for remainder of console session (0) (*)
Rversions.bat - list R and set R version in registry, e.g. on Vista:
el cmd/c Rversions R-2.12.0 (0)
show-svn-info.hta - show svn info if current folder is an...
2008 Jan 19
0
batchfiles 0.4-0
...d. It also
creates and displays a backup copy of the pdf with a unique
name so two versions of the same pdf file can be simultaneously
displayed.
- #Rscript.bat can be used as the first line of an R script to
make it callable as a batch file. Rscript.bat is a variation
of it used differently.
- Rtidy.bat reformats R programs. Its primarily included as
a simple example of #Rscript.bat .
- Rversions.hta - if there are multiple versions of R installed
this program locates all versions in the registry and
provides a GUI interface with a drop down menu to choose
which one you wish to make current....
2008 Jan 19
0
batchfiles 0.4-0
...d. It also
creates and displays a backup copy of the pdf with a unique
name so two versions of the same pdf file can be simultaneously
displayed.
- #Rscript.bat can be used as the first line of an R script to
make it callable as a batch file. Rscript.bat is a variation
of it used differently.
- Rtidy.bat reformats R programs. Its primarily included as
a simple example of #Rscript.bat .
- Rversions.hta - if there are multiple versions of R installed
this program locates all versions in the registry and
provides a GUI interface with a drop down menu to choose
which one you wish to make current....
2009 Mar 13
6
R multiline expression grief
Dear all.
After much grief I have finally found the source of some weird
discrepancies in results generated using R. It turns out that this is
due to the way R handles multi-line expressions. Here is an example
with R version 2.8.1:
----------------------------------------------------
# R-script...
r_parse_error <- function ()
{
a <- 1;
b <- 1;
c <- 1;
d <- a + b + c;
e
2009 Mar 14
1
multiple hypothesis testing
...27658b0c6adcb5a9@mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> If all your code has semicolons you could write a program that
> puts each statement on one line based on the semicolons and
> then passing it through R will reformat it in a standard way.
> See Rtidy.bat in the batchfiles distribution for the reformatting part:
> http://batchfiles.googlecode.com
>
> On Fri, Mar 13, 2009 at 8:55 AM, Paul Suckling <paul.suckling@gmail.com>
> wrote:
> > Dear all.
> >
> > After much grief I have finally found the source of some w...