Hi,
I have my data stored in an sqlite database and would like to pull it into JMP and merge with my DOE design.
My jmp file looks like this:
key | Variable1 | variable2 | variable3 |
1 | - | - | - |
2 | - | - | - |
My SQL database has the columns like this:
key | data_type | result |
1 | Variable1 | 12.6 |
1 | Variable2 | 15.4 |
1 | Variable3 | 17.8 |
2 | Variable1 | 8.2 |
2 | Variable2 | 7.1 |
2 | Variable3 | 7.2 |
| | |
I would like a query to bring in the data to jmp like this:
jmptable:
key | Variable1 | variable2 | variable3 |
1 | 12.6 | 15.4 | 17.8 |
2 | 8.2 | 7.1 | 7.2 |
I have set up the SQL connection and that is working fine. So what I would like to do is join the tables and transpose the data into the correct variable columns. Any idea how to do this?
Thanks