I use python, matplotlib and pandas to filter my log file.
My log file contains two columns like this:
column_name = ["TIME", "IDPKT"]
The second column "IDPKT" contains id of packets in my simulation which have the following form: 1.1 ; 1.2 ; 1.10 ; etc. So, ths Ids 1.1 and 1.10 are two different packets (1.1 is the first packet generated by the node 1 and 1.10 is the tenth packet generated also by the node 1).
So, python reads automatically this column as float numbers. The problem that it considers the different ids 1.10 ; 1.100 ; 1.1000 as 1.1.
This issue causes a big problem in my work since they are different packets generated and it calculates only 1.1.
Can someone help me to solve this problem please?
dtypeargument.