Export
Export(expression, filename)
Export is a typescript command that mirrors the functionality of the File → Export menu option in Analytica.
Usage: Export «expression» "«filename»"
File format
Tables are written using the Export-Import data format.
Unindexed lists are written with one item per line.
Examples
To export an edit table definition for the variable A
, where A
is defined as a Table:
Export Definition A "C:\Temp\A.txt"
To export the PDF result of Y
:
Export PDF(Y) "C:\temp\Y_pdf.txt"
To export the Mid value of Y
:
Export Y "C:\temp\Y_result.txt"
or
Export Mid(Y) "C:\temp\Y_result.txt"
See Also
- Export-Import data format
- WriteExportFile (note: future -- does not exist yet)
- ReadExportFile
- Import command
- Import and Export data
Comments
Enable comment auto-refresher