Ploting the data from a txt file

Hello everyone,

Can you please assist me in plotting a graphs for the first column against each column from the following text file 19-05-10.txt (1.1 MB)
i’m not sure if it is histogram or ntuple

thank you in advance

It looks like more a ntuple given the number of columns you have.

Can you assist me to create plots, for those ntuples please

   auto t = new TTree();
   t->ReadFile("19-05-10.txt","a:b:c:d:e:f:g:h:i:j:k:l:m:n:o:p:q:r:s:t:u");
   t->Draw("b:a", "","l");

Thank you, so much, i’ll do the rest