I'm new to R and try to solve the following question:
I have a dataframe, which was read out of a csv-file:
data<-read.table(file='data.csv',header=T,sep=';',strip.white=T)
The csv looks like the following 2 lines, but is much longer (1,7 million lines):
sequence_nbr;tmstmp;source_addr;add_data
1;2016-07-10 10:09:20;3.6.25;data1
2;2016-07-10 10:09:20;3.6.28;data2
There are 55 different source_addr in the file and I'm trying to find the first occurence of each address.
But as I'm new to this I have no idea how to create a table with tmstmp and the source_addr.
Would love to understand a possible way to do this.