Skip to content

Commit

Permalink
Hotfix to documentation and a bug in buildEdgeMatrix verbosity.
Browse files Browse the repository at this point in the history
  • Loading branch information
elbamos committed Aug 18, 2016
1 parent ee71208 commit 580b2d2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 28 deletions.
2 changes: 1 addition & 1 deletion R/buildEdgeMatrix.R
Expand Up @@ -12,7 +12,7 @@
buildEdgeMatrix <- function(data,
neighbors,
distance_method = "Euclidean",
verbose = options("verbose")) {
verbose = getOption("verbose", TRUE)) {
indices <- neighborsToVectors(neighbors)
distances <- distance(indices$i, indices$j, x = data, distance_method, verbose)
mat <- sparseMatrix(
Expand Down
6 changes: 2 additions & 4 deletions R/largeVis-package.r
Expand Up @@ -16,10 +16,8 @@
#' \item Using stochastic gradient descent, estimate an embedding for each vertex in the low-dimensional space.
#' }
#' @references Jian Tang, Jingzhou Liu, Ming Zhang, Qiaozhu Mei. \href{https://arxiv.org/abs/1602.00370}{Visualizing Large-scale and High-dimensional Data.}
#'
#' @name largeVis
#' @name largeVis-package
#' @docType package
#' @useDynLib largeVis
#' @importFrom Rcpp sourceCpp
#'
NULL
"_PACKAGE"
25 changes: 2 additions & 23 deletions man/largeVis.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 580b2d2

Please sign in to comment.