Hello there,
I am fairly new to Neo4j and I have only found examples with a low numbers of columns for this topic that added them manually.
So my problem is I have a Matrix with around 40 Algorithms that looks like this (The table is formatted with ";" (I know about FIELDTERMINATOR) and emtpy for emtpy cells, but when I tried to copy it in it looked to confusing, thats why I recreated it here in small) :
ID | Name | AANE | ADDGRAPH | ADONE | AEGIS | ...
0 | AANE | | |{"Dataset":["uci message", "digg"], "Metric":["AUC"]}| | ...
1 | ADDGRAPH |{"Dataset":["ACM"],"Metric":["F1"]}| | | ...
2 | ADONE | ...
3 | AEGIS | ...
...
So I basically have "dynamic" amounts of algorithms and I want to create one Node for each algorithm and one for each Dataset, and a relationship from the algorithms to the Dataset, if they where tested on this Dataset with the Metric-Name as relationship property.
The solutions I found all went over the columns statically because the already knew which and how many columns they had.
I Appreciate any help and best regards.