Open Rachelly opened 9 years ago
Colv = NA
.
Also make sure you use the latest NMF version (from the github devel
branch), as I made some changes not yet on CRAN or master
so that NA values are better handled.color
, passing a vector of breaks named with colors (I think this works), or color in argument color
and break values in argument breaks
.Thanks!
1) I worked around this by giving a very low value for NAs, one that is outside the normal range.
\ In order to make sure I always use the latest version of NMF do I have to put the following line into the code devtools::install_github('renozao/NMF', ref = 'devel') or is there a more elegant way of doing this without downloading the package every time I source the code...?
2) This worked nicely. I used only "breaks" (as color has a default value) and gave it a vector that is the range I wanted for all plots.
Once you installed the package from Github, calling library will load it, as usual. You only need to call github_install to install updates. It is similar to install.packages but fetch the source package on GitHub.
Thanks, Rachelly.