dreamRs / esquisse

RStudio add-in to make plots interactively with ggplot2
https://dreamrs.github.io/esquisse
Other
1.77k stars 229 forks source link

Esquisse crashing #52

Closed SocProf closed 5 years ago

SocProf commented 5 years ago

When running esquisse:: esquisser(data) in R Studio, the esquisse window opens and crashes with the error message: Loading required package: shiny

Listening on http://127.0.0.1:4000 Warning: Error in badgeType: length(col_name) == length(col_type) is not TRUE 80:

I have shiny 1.2.0 installed and loaded.

pvictor commented 5 years ago

Hello, What is data ? Can you send output of str(data) please ?

Victor

SocProf commented 5 years ago

It's the starwars dataset in dplyr.

pvictor commented 5 years ago

Thanks, it was because of list columns, they are now dropped (don't sure there's a way to visualize them with ggplot2).

Victor