search for: jonclayden

Displaying 8 results from an estimated 8 matches for "jonclayden".

2015 Jan 08
0
Package "ore": Oniguruma Regular Expressions
...ing against long strings. - Substitutions can be functions as well as strings. - Matches can be efficiently obtained over only part of the strings. - Fewer core functions, with more consistent names. The package is developed using GitHub, and more information can be found at <https://github.com/jonclayden/ore>. It is also available on CRAN. In addition, I've developed a regular expression benchmark, which pits "ore", "base" and the "stringi" package against the full text of The Adventures of Sherlock Holmes. It can be obtained and run via <https://github.com/...
2015 Jan 08
0
Package "ore": Oniguruma Regular Expressions
...ing against long strings. - Substitutions can be functions as well as strings. - Matches can be efficiently obtained over only part of the strings. - Fewer core functions, with more consistent names. The package is developed using GitHub, and more information can be found at <https://github.com/jonclayden/ore>. It is also available on CRAN. In addition, I've developed a regular expression benchmark, which pits "ore", "base" and the "stringi" package against the full text of The Adventures of Sherlock Holmes. It can be obtained and run via <https://github.com/...
2012 Oct 23
1
Mirror of the R manuals with a new visual style
...>. This mirror does not modify the content of the manuals at all, but simply injects a new visual style with the aim of making the text easier to read and navigate. It will be updated after each release of R. The code used to generate these versions is freely available at <https://github.com/jonclayden/r-manuals>. I hope some people find this useful. Comments are welcome. All the best, Jon
2011 Sep 23
2
Issue with seek() on gzipped connections in R-devel
...oes not seek to the requested location. It doesn't seem to occur all the time - I tried to create a small example file to illustrate it, but the problem didn't occur. However, it can be seen with a file I use for testing my packages, which is available through the URL <https://github.com/jonclayden/tractor/blob/master/tests/data/nifti/maskedb0_lia.nii.gz?raw=true>: > con <- gzfile("~/Downloads/maskedb0_lia.nii.gz","rb") > seek(con, 352) [1] 0 Warning message: In seek.connection(con, 352) : seek on a gzfile connection returned an internal error > seek(con,...
2013 Jul 04
1
Cross-platform linking of a simple front-end
...mmand, but I'm not sure how portable that will itself be. Could anyone advise on the best way to make this work portably, please? For this application I'm not concerned about Windows compatibility - portability across Unix-alikes is sufficient. The source code is at < https://github.com/jonclayden/tractor/blob/master/src/tractor.c>, if that is useful. All the best, Jon [[alternative HTML version deleted]]
2012 Apr 11
0
Significant updates to medical imaging packages: TractoR and RNiftyReg
...ages, each somewhat more specialised than tractor.base, as well as a flexible command-line interface which can be used to perform common tasks quickly. Details can be found in a recent JSS paper on TractoR [4]. All the best, Jon [1] http://sourceforge.net/projects/niftyreg/ [2] https://github.com/jonclayden/RNiftyReg [3] http://www.tractor-mri.org.uk [4] http://www.jstatsoft.org/v44/i08/ -- Jonathan D Clayden, PhD Lecturer in Neuroimaging and Biophysics Imaging and Biophysics Unit UCL Institute of Child Health 30 Guilford Street LONDON WC1N 1EH United Kingdom t | +44 (0)20 7905 2708 f | +44 (0)20 7...
2012 Apr 11
0
Significant updates to medical imaging packages: TractoR and RNiftyReg
...ages, each somewhat more specialised than tractor.base, as well as a flexible command-line interface which can be used to perform common tasks quickly. Details can be found in a recent JSS paper on TractoR [4]. All the best, Jon [1] http://sourceforge.net/projects/niftyreg/ [2] https://github.com/jonclayden/RNiftyReg [3] http://www.tractor-mri.org.uk [4] http://www.jstatsoft.org/v44/i08/ -- Jonathan D Clayden, PhD Lecturer in Neuroimaging and Biophysics Imaging and Biophysics Unit UCL Institute of Child Health 30 Guilford Street LONDON WC1N 1EH United Kingdom t | +44 (0)20 7905 2708 f | +44 (0)20 7...
2013 Feb 26
3
Running R scripts with interactive-style evaluation
Hi, when running a R-script like this: enable_magic() compute_stuff() disable_magic() the whole script is parsed into a single expression and then evaluated, whereas when using the interactive shell after each line entered, a REPL loop happens. Is there a way to make a script evaluation behave like this, because I need a single REPL iteration for every expression in the script. It doesn't