Displaying 2 results from an estimated 2 matches for "listio_".
Did you mean:
listio
2002 May 15
0
language: bug or feature: vector-subscript of list (PR#1558)
Full_Name: Mark Bravington
Version: R1.3.1 & R1.5.0
OS: Windows 2000
Submission from: (NULL) (140.79.2.3)
R doesn't like the use of subscripts with length > 1, to get into recursive
lists:
> listio_ list( a=list( b=9, c='hello'), d=1:5)
> listio[[ c( 1, 2)]]
Error: attempt to select more than one element
>
S is more relaxed:
test> listio_ list( a=list( b=9, c='hello'), d=1:5)
test> listio[[ c(1,2)]]
[1] "hello"
test>
The same goes for assignment i...
2002 May 15
0
(PR#1558) language: bug or feature: vector-subscript of
...15 May 2002 mark.bravington@csiro.au wrote:
> Full_Name: Mark Bravington
> Version: R1.3.1 & R1.5.0
> OS: Windows 2000
> Submission from: (NULL) (140.79.2.3)
>
>
> R doesn't like the use of subscripts with length > 1, to get into recursive
> lists:
>
> > listio_ list( a=list( b=9, c='hello'), d=1:5)
> > listio[[ c( 1, 2)]]
> Error: attempt to select more than one element
> >
>
> S is more relaxed:
>
> test> listio_ list( a=list( b=9, c='hello'), d=1:5)
> test> listio[[ c(1,2)]]
> [1] "hello"...