R Related
-
A tty Connection Patch
This patch adds a tty connection to R. The tty connection is an interface to POSIX terminals, including purely software terminals, and those that connect to hardware, such as a serial port. Details of the POSIX terminal, as implemented by the GNU C library are found in the Low-Level Terminal Interface chapter (chapter 17) of the GNU libc manual, and the termios.h header file.
- R-2.12.2-tty+conf.patch
- R-2.13.0-tty.patch
- R-2.13.0-tty+conf.patch
- R-2.13.1-tty.patch
- R-2.13.1-tty+conf.patch
The files above are named according to the version of R that they patch. Because the tty connection depends on the termios.h header file, it is necessary to patch the autoconf configuration file configure.ac. Hence, before the patched code may be compiled, it is necessary to regenerate the configure script using autoconf. Patch files without the +conf string in their name only patch the configure.ac file. Those with the +conf string include the patched configure script.
The following shell typescript illustrates the simplest means to apply the patch and compile the patched R source in a Linux environment, assuming the normal R build requirements are met:
wget http://cran.r-project.org/src/base/R-2/R-2.13.1.tar.gz tar -xvzf R-2.13.1.tar.gz cd R-2.13.1 wget http://biostatmatt.com/R/R-2.13.1-tty+conf.patch patch -p1 < R-2.13.1-tty+conf.patch ./configure && make
Packages
Miscellaneous Scripts
- ecg.R: ECG signal processing.
- NMEA0183Parse.R: parse GPS (NMEA0183) data
- boot.R: simple bootstrap examples.
- HouseMtn.R: plot GPS track, hike to House Mountain
- scat.R: Simple ASCII scatterplots in R
AVR ATmega168 Code
- atmega168-adc.tar.gz - Analog-to-Digital Converter interface code
- atmega168-thermo.tar.gz - Maxim DS18B20 digital thermometer interface code
- atmega168-bootloader.tar.gz - A bootloader for the ATmega168 uC
- atmega168-blink.tar.gz - The "hello, world!" of uC programming
Other
- BoldCanvas: C++ Plotting API (PostScript)