I need to implement a machine learning method called "OLCPM", this method uses for input a stream graph (dynamic network), the dataset they used is in this format :
+n 852 1353303380.0
+n 1629 1353303380.0
+n 875 1353303380.0
+n 809 1353303380.0
+n 854 1353303380.0
+n 677 1353303380.0
+l 1170 1644 1353303380.0
-l 1170 1644 1353303640.0
+l 1671 1672 1353304000.0
+l 656 682 1353304080.0
+l 1148 1644 1353304100.0
with : +n: add node,-n: delete node,+l: add edge,-ln: delete edge
My own dataset is just a normal .csv file dataset:
here How can I turn my dataset to the required format of it ( +l,+n..) to get the dynamic network , in order to apply the method.
I am new to machine learning. Any help please.
Thank you