BIDS-collaborative / destress

Helping @peparedes with text analysis of livejournal data
ISC License
7 stars 2 forks source link

Loading matrix #32

Closed xih closed 9 years ago

xih commented 9 years ago

@coryschillaci @anasrferreira @davclark

When I try to load a txt file into BidMat I'm getting a column vector instead of a matrix.

My input file is vectors.txt located in /var/local/destress and I tried load[F,D,I,L]MAT, however I am still getting scala> size(t) res5: (Int, Int) = (3000001,1) which is a column vector.

Any help on getting a correct n x m matrix. Or is my input file, vectors.txt, wrong ?

Cheers

DanielTakeshi commented 9 years ago

It's almost certainly because the first line is a single number. I'm not sure why that's there. Try deleting it and load again. I load text files all the time, and I tried adding in a single number as the first line to see if that would screw it up, and loadFMat() only took the first number in each line to create a column vector.