Displaying 3 results from an estimated 3 matches for "100504".
Did you mean:
10004
2010 Jun 02
3
which function
...list of elements :
l <-
c("100415", "100416", "100419", "100420", "100421", "100422",
"100423", "100426", "100427", "100428", "100429", "100430", "100503",
"100504", "100505", "100506", "100507", "100510", "100511", "100512",
"100513", "100514", "100517", "100518", "100519", "100520", "100521",
"100524", "1005...
2010 May 21
4
indexing problem
..."y"
With objects :
> l
[1] "100415" "100416" "100419" "100420" "100421" "100422" "100423" "100426"
"100427" "100428" "100429" "100430" "100503" "100504" "100505" "100506"
"100507" "100510" "100511" "100512" "100513"
> select #is a selection of elements of object "l"
[1] "100415" "100416" "100419" "100420"
"PLglo...
2010 May 21
1
select elements in a list
...a list :
l <-
list("100415", "100416", "100419", "100420", "100421", "100422",
"100423", "100426", "100427", "100428", "100429", "100430",
"100503", "100504", "100505", "100506", "100507", "100510",
"100511", "100512", "100513")
I need to access part of it with two variables, x and y. For example, if
x<-100415 et y<-100420, the result I want is 100415,100416,100419,1...