Data import

Hi

I'm new to igor and Im trying to load my data. The data is a text file containing 4 columns, and a header, via the tweaks feature I can skip the header from being loaded into my data and I also make sure that it ignores blanks after each column. However Igor always imports the data leaving a blank line after each set of point (See table), how can I get rid of this?

Thanks
The most likely explanation is that your file contains double-line endings (two carriage returns or two linefeeds after each line). To investigate this, you can load your file as binary using this command:
GBLoadWave/T={72,72}/W=1 ""  // Load as unsigned byte data

Then display the resulting wave in a table. Look for consecutive values of 10 (linefeed) or 13 (carriage return). If you find them then this is an issue with your file.

If that does not explain the issue, if you post your data file and the command you are using to load it, I will investigate. Alternatively, send them to WaveMetrics support.
Hi,


thanks for the explanation, I can indeed see consecutive values of 13. Do you have any suggestion of how I can avoid it?
I uploaded the data file in the add.
Thanks
1084_56.TXT
Your file has CR CR LF where it should have CR LF. This may be due to a bug in the software that wrote it or it may be caused by transferring it through a buggy FTP client or email client.

At any rate, I have written a procedure that will load the file. It works by creating a temporary file with the extra CR removed. The procedure is available as a snippet at http://www.igorexchange.com/node/2607.

I have also attached the procedure file to this comment. To use it, download the attached procedure file and save it in your "Igor Procedures" folder. Then restart Igor. Igor will automatically load the procedure file. Then choose "Remove Extra Line Breaks and Load" from the Data->Load Waves submenu.

But first, learn about the "Igor Pro User Files" folder, which is the parent of the "Igor Procedure" folder, by executing this and reading the help:
DisplayHelpTopic "Special Folders"