How can I save a .out file as a gauss database ?

This looks like an easy question, but it might be somewhat tricky, especially using the "open" command and creating a file handle.

 

Thank you!

1 Answer



0



Your first step will be to load the data into GAUSS. Here are some tutorials that may help:

  1. Reading and writing CSV data with GAUSS.
  2. Loading variables from a file.

Once your data and variable names are loaded, then you need to write the data file using the saved command. Here is an example that will work if you have your data loaded into a GAUSS matrix named X and your variable names in a string array named varnames.

// Name of the file you want to create
fname = "crossgd.dat";

// Make variable names uppercase
// since it sounds like you are running
// some code that may count on that
varnames = uppper(varnames);

// Create the dataset
saved(X, fname, varnames);

aptech

1,773

Your Answer

1 Answer

0

Your first step will be to load the data into GAUSS. Here are some tutorials that may help:

  1. Reading and writing CSV data with GAUSS.
  2. Loading variables from a file.

Once your data and variable names are loaded, then you need to write the data file using the saved command. Here is an example that will work if you have your data loaded into a GAUSS matrix named X and your variable names in a string array named varnames.

// Name of the file you want to create
fname = "crossgd.dat";

// Make variable names uppercase
// since it sounds like you are running
// some code that may count on that
varnames = uppper(varnames);

// Create the dataset
saved(X, fname, varnames);


You must login to post answers.

Have a Specific Question?

Get a real answer from a real person

Need Support?

Get help from our friendly experts.

Try GAUSS for 14 days for FREE

See what GAUSS can do for your data

© Aptech Systems, Inc. All rights reserved.

Privacy Policy