Skip to content
Prev 388616 / 398502 Next

Converting a list to a data frame

On 24/07/2021 5:40 p.m., Rui Barradas wrote:
If that's the main thing Jeff is doing, then he should convert to a 
dataframe.  But it *is* possible to work with the original matrix in 
ggplot2, just not very natural:
ggplot(NULL, aes(x=m[,"x"], y=m[,"y"])) + geom_point() # OK

Duncan Murdoch