Convert Sheet

Convert

This dialog can be used to convert either the entire spreadsheet of a vector spreadsheet to other types.

Sheet Type

Converts the spreadsheet from one type to another. The following restrictions apply to spreadsheet conversion:

Matrix or Table Name

You can change the name of matrices or tables by typing the new name into this box.

Column Factor Name

You can change the name of the factor indexing the columns in a two way table by editing its name here.

Table Type

When converting to a table, you can specify whether the new sheet is:

See Also

Convert Column
Convert Multiple Columns
Spreadsheet Column Menu

In the command language, a variate or factor can be converted to a text with the PRINT directive:
PRINT [C=TXT;IPRINT=*;SQUASH=yes] VAR

A variate or text can be converted to a factor with the GROUPS directive:
GROUPS VAR; FACTOR=FACT
GROUPS [Modify=yes] VAR "if the same structure is to be changed"

A text can be converted to a variate with a READ directive:
READ [C=TXT] VAR

In the command language, a 1 way table to variate with the TPROJECT calculate function:
CALC VAR = TPROJECT(Table)

In the command language, a 2 way table to matrix with the TMATRIX calculate function:
CALC MAT = TMATRIX(Table;RowFactor;ColFactor)

The EQUATE directive can also be used to move data from one structure to another:
VARIATE [10] V[1...10]
EQUATE OLDS=Matrix; NEWS=V
MATRIX [10;4] Matrix2
EQUATE OLDS=!p(A,B,C,D); NEWS=Matrix2