Entering edit mode
shramanathakur
•
0
@shramanathakur-9856
Last seen 9.0 years ago
I am new to R. I am trying to view the Golub_merge dataset in R using the View() function.
> View(Golub_Merge)
and, I get this error:
Error: VECTOR ELT() can only be applied to a 'list', not a 'builtin'
Please help.
Actually,
View(Golub_Merge)
works for me, becauseas.data.frame(Golub_Merge)
is defined and works. I guess there is another package involved, masking the as.data.frame generic from BiocGenerics. OP, please EDIT your question to add the output oftraceback()
(immediately after the error) andsessionInfo()
.