You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
superheat(dplyr::select(mtcars, -mpg),
# scale the variables/columns
scale = T,
# add mpg as a scatterplot next to the rows
yr = mtcars$mpg,
yr.axis.name = "miles per gallon",
yr.lim = c(0, 60),
yr.breaks = c(10, 40),
# add correlation between each variable and miles per gallon
yt = cor(mtcars)[-1,"mpg"],
yt.plot.type = "bar",
yt.axis.name = "Correlation\nwith mpg")
gives me the following error:
Error in superheat(dplyr::select(mtcars, -mpg), scale = T, yr = mtcars$mpg, :
unused argument (yr.lim = c(0, 60), yr.breaks = c(10, 40))
The text was updated successfully, but these errors were encountered:
superheat(dplyr::select(mtcars, -mpg),
# scale the variables/columns
scale = T,
gives me the following error:
Error in superheat(dplyr::select(mtcars, -mpg), scale = T, yr = mtcars$mpg, :
unused argument (yr.lim = c(0, 60), yr.breaks = c(10, 40))
The text was updated successfully, but these errors were encountered: