Displaying 1 result from an estimated 1 matches for "mkchart".
Did you mean:
mkchar
2001 May 11
1
Managing R objects with 'make'
...s I'm careful to use S object names that map directly
to Unix/Linux filenames.
For example, say I'm building a particular graphic (chart.ps)
from a data.frame in S (mydata) that comes from an external
data file (mydata.csv). The makefile snippet would look like:
chart.ps: .Data/mydata mkchart.src
Splus < mkchart.src > mkchart.log 2>&1
.Data/mydata: mydata.csv build_mydata.src
Splus < build_mydata.src > build_mydata.log 2>&1
Of course, build_mydata.src would do a read.table on
mydata.csv plus other necessary transformations.
I'm looking for sug...