Displaying 3 results from an estimated 3 matches for "listio".
Did you mean:
listid
2003 Sep 25
1
tkinsert (PR#4289)
In R-1.7.1, I used to be able to append a character vector to a 'tklistbox' with e.g.
listio <- tklistbox( tktoplevel(), font='Courier', height=20, width=20, setgrid=TRUE)
tkinsert( listio, 'end', letters[1:3])
tkpack( listio,side='left', expand=TRUE, fill='both')
and three items would be added to 'listio'. This doesn't work in R-devel-- it l...
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...
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"...