Report: View(starwars) crashes Rstudio

library(tidyverse)
View(starwars)

How to crash the system:

  1. after View loads, move cursor to right most fields, starting with 'films' field.
  2. attempt to sort on films column by clicking on the column name.

Error in (function (..., na.last = TRUE, decreasing = FALSE, method = c("auto", :
unimplemented type 'list' in 'orderVector1'
Error: VECTOR_ELT() can only be applied to a 'list', not a 'closure'
Error in .rs.findDataFrame("package:dplyr", "starwars", "8655C24D", "D:/CodingData/RCode/clean1/.Rproj.user/2EC83A06/viewer-cache") :
R_Reprotect: only 1 protected item, can't reprotect index -4

NOTE: in RGUI, View(starwars) does not try to show the last three 'list' fields.

If you do

str(starwars)

films is not a simple vector, but a list. I do not think one can directly sort a list.
See Sort a list

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.