jtablesaw/tablesaw

read table with two header rows

tischi opened this issue · 3 comments

Hi,

I have a table that looks like this:

Image, Image
Count1, Count2
100, 100
150, 170
... , ...

I would need to open it with column names: Image_Count1, Image_Count2
That is concatenate the first two rows into one header.

Is that possible?

Thanks!

@tischi for this you need to do two steps. In the first one just get the raw data and transform it. Than in step two only use from the new format.

just get the raw data and transform it

Thanks! You mean opening the whole file as one big String or is there something in tablesaw that I could use?