search for: writesdml

Displaying 3 results from an estimated 3 matches for "writesdml".

Did you mean: writegdal
2000 Dec 04
0
Data Exchange with StatDataML for MATLAB
...LAGS are set correctly for libxml 3. run: configure make MATLAB from within the "matoct"-directory In the subdirectory "matlab", you should obtain: StatdataML.dtd, some .m files and a readsdml.mex?? file 4. run matlab and change your searchpath accordingly 5. try "help writesdml" and "help readsdml" to see the command options. Normally, something like writesdml (object, 'out.sdml') or object = readsdml ('out.sdml') should work. -d -- Mag. David Meyer Wiedner Hauptstrasse 8-10 Technical University of Vienna A-1040 Vienna/AUSTRIA De...
2003 Jul 30
1
Write XML according to ggobi DTD
Hi, Has anyone out there written a function to take a data.frame as input and generate XML that conforms to the DTD for ggobi ("ggobi.dtd")? In other words, like a simple version of the writeSDML function in the StatDataML package, but using ggobi.dtd instead of StatDataML.dtd. It looks easy to write such a function to handle data.frames with only numeric data, but a bit of work with character and factor data. Thanks, Jim Rogers
2006 Oct 07
1
Request to open up getConnection to embedded interface
...cat("<H1>Empty</H1>") } else if (args$format == 'csv'){ apache.set_content_type(r,"text/csv") write.csv(d) } else if (args$format == 'xml'){ apache.set_content_type(r,"text/xml") writeSDML(d) # from StatDataML } else if (args$format == 'rds'){ apache.set_content_type(r,'application/octet-stream') save(d,file=stdout()) # yes, even this works } dbDisconnect(con) OK } And of course the output of the above can eithe...