Dear listers,
You can download my files: break_fh, break_test2 and Pakistan_data
2 Answers
0
I think your first problem is with your data. I am guessing that you want your data to have six columns. However, GAUSS is assuming that the commas are data delimiters. If you change it from this:
1975 -1,118973 -1,052683 9,597891 4,650136 3,289109 1976 -1,167021 -1,041287 9,61668 4,618381 3,287532 1977 -1,132484 -1,03002 9,624223 4,638634 3,306165
to this:
1975 -1.118973 -1.052683 9.597891 4.650136 3.289109 1976 -1.167021 -1.041287 9.61668 4.618381 3.287532 1977 -1.132484 -1.03002 9.624223 4.638634 3.306165
your data will be read in as six columns and your first problem will be resolved.
0
Thank you for your quick response.
Your Answer
2 Answers
I think your first problem is with your data. I am guessing that you want your data to have six columns. However, GAUSS is assuming that the commas are data delimiters. If you change it from this:
1975 -1,118973 -1,052683 9,597891 4,650136 3,289109 1976 -1,167021 -1,041287 9,61668 4,618381 3,287532 1977 -1,132484 -1,03002 9,624223 4,638634 3,306165
to this:
1975 -1.118973 -1.052683 9.597891 4.650136 3.289109 1976 -1.167021 -1.041287 9.61668 4.618381 3.287532 1977 -1.132484 -1.03002 9.624223 4.638634 3.306165
your data will be read in as six columns and your first problem will be resolved.
Thank you for your quick response.