Please briefly describe your problem and what output you expect. If you have a question, please don't use this form. Instead, ask on https://stackoverflow.com/ or https://community.rstudio.com/.
Please include a minimal reproducible example (AKA a reprex). If you've never heard of a reprex before, start by reading https://www.tidyverse.org/help/#reprex.
Brief description of the problem
fc$concepts$plot() opens up Quartz window and then crashes R.
R Under development (unstable) (2020-03-08 r77917) -- "Unsuffered Consequences"
Platform: x86_64-apple-darwin15.6.0 (64-bit)
[R.app GUI 1.70 (7782) x86_64-apple-darwin15.6.0]
> library("fcaR")
Warning message:
multiple methods tables found for ‘plot’
> I <- read.csv(file = 'I.csv', header = FALSE)
> rowNames <- read.csv(file = 'rowNames.csv', header = FALSE)
> colNames <- read.csv(file = 'colNames.csv', header = FALSE)
> colnames(I) <- t(colNames)
> rownames(I) <- t(rowNames)
> library("fcaR")
> fc <- FormalContext$new(I)
> fc$clarify()
> fc$reduce()
> fc$find_concepts()
> fc$concepts$plot()
Please briefly describe your problem and what output you expect. If you have a question, please don't use this form. Instead, ask on https://stackoverflow.com/ or https://community.rstudio.com/.
Please include a minimal reproducible example (AKA a reprex). If you've never heard of a reprex before, start by reading https://www.tidyverse.org/help/#reprex.
Brief description of the problem
fc$concepts$plot() opens up Quartz window and then crashes R.
R Under development (unstable) (2020-03-08 r77917) -- "Unsuffered Consequences"
Platform: x86_64-apple-darwin15.6.0 (64-bit)
[R.app GUI 1.70 (7782) x86_64-apple-darwin15.6.0]