Difference between revisions of "Export"

 
Line 28: Line 28:
 
* [[ReadExportFile]]
 
* [[ReadExportFile]]
 
* [[Import]] command
 
* [[Import]] command
* [[Using the Import and Export Commands]]
+
* [[Import and Export data]]

Latest revision as of 17:56, 1 June 2016


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

Comments


You are not allowed to post comments.