Displaying 3 results from an estimated 3 matches for "ast2017000005534".
2017 Oct 12
4
comparing two strings from data
...to be
found in the second column at most once.
For each entry of the first column, if that entry is found in the second
column, I would like to get the corresponding index. For instance, if the
first entry of the first column is 5th entry in the second column, I would
like to keep this index 5.
AST2017000005534 TUR2017000001428
CTS2017000079930 CTS2017000071989
CTS2017000079931 CTS2017000072015
In a loop, when I use the following code to get those indices,
data_2 = read.csv("excel_data.csv")
column_1 = data_2$data1
column_2 = data_2$data2
match_list <- array(0,dim=c(310,1)); # 3...
2017 Oct 12
0
comparing two strings from data
...at most once.
>
> For each entry of the first column, if that entry is found in the second
> column, I would like to get the corresponding index. For instance, if the
> first entry of the first column is 5th entry in the second column, I would
> like to keep this index 5.
>
> AST2017000005534 TUR2017000001428
> CTS2017000079930 CTS2017000071989
> CTS2017000079931 CTS2017000072015
>
> In a loop, when I use the following code to get those indices,
>
>
> data_2 = read.csv("excel_data.csv")
> column_1 = data_2$data1
> column_2 = data_2$data2...
2017 Oct 13
1
comparing two strings from data
...each entry of the first column, if that entry is found in the second
> > column, I would like to get the corresponding index. For instance, if the
> > first entry of the first column is 5th entry in the second column, I
> would
> > like to keep this index 5.
> >
> > AST2017000005534 TUR2017000001428
> > CTS2017000079930 CTS2017000071989
> > CTS2017000079931 CTS2017000072015
> >
> > In a loop, when I use the following code to get those indices,
> >
> >
> > data_2 = read.csv("excel_data.csv")
> > column_1 = data_...