Jonathan H.

Results 7 comments of Jonathan H.

I'm having the same issue. Please let me know if there is a fix. Thanks

#install.packages("corrplot") library(tidyverse) library(dplyr) library(reshape) library(matrixcalc) library(ggplot2) #library(corrplot) #used for plotting correlation getwd() #displays your working directory setwd("/2020football.csv") football % filter(FantPos=="QB") View(quarterbacks) str(quarterbacks) quarterbacks_corr % select_if(is.numeric) %>% select(-X2.00.PM, -Y.R,-VBD) head(quarterbacks_corr) #head(quarterbacks_corr)...

Hi there, I'm using a mac and using the free version of R studio R version 3.6.3 It's getting stuck with these 3 lines of code. install.packages('heatmaply') library("heatmaply") heatmaply(mtcars)

It's this line of code below which hangs: heatmaply(mtcars)

Hope this helps: ``` debug(heatmaply) heatmaply(mtcars) debugging in: heatmaply(mtcars) debug: { UseMethod("heatmaply") } Browse[2]> { + UseMethod("heatmaply") + } debug at #2: UseMethod("heatmaply") Browse[3]> UseMethod("heatmaply") Error in UseMethod("heatmaply") : 'UseMethod'...

``` if (!missing(long_data)) { if (!missing(x)) { stop("x and long_data should not be used together") } assert_that(ncol(long_data) == 3, all(colnames(long_data) == c("name", "variable", "value"))) x

sessionInfo() Browse[2]> sessionInfo() R version 3.6.3 (2020-02-29) Platform: x86_64-apple-darwin15.6.0 (64-bit) Running under: macOS 10.16 Matrix products: default LAPACK: /Library/Frameworks/R.framework/Versions/3.6/Resources/lib/libRlapack.dylib locale: [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8 attached base packages: [1] stats graphics grDevices utils...