Difference between revisions of "Export"

(Created)
 
Line 11: Line 11:
  
 
To export the PDF result of ''Y'':
 
To export the PDF result of ''Y'':
:<code>Export PDF(Y) "C:\temp\Y_pdf.txt</code>
+
:<code>Export PDF(Y) "C:\temp\Y_pdf.txt"</code>
  
 
To export the Mid value of Y:
 
To export the Mid value of Y:

Revision as of 06:49, 28 May 2013


Export is a typescript command that mirrors the functionality of the File→Export menu option in Analytica.

Usage: Export «expression» "«filename»"

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"

File format

Tables are written using the Export-Import data format.

Unindexed lists are written with one item per line.

See Also

Comments


You are not allowed to post comments.