Skip to content

Commit 3675853

Browse files
committed
formal stuff
1 parent e79c571 commit 3675853

File tree

7 files changed

+8
-10
lines changed

7 files changed

+8
-10
lines changed

R/SCLOP.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ SCLOP.pairwise.default = function(sims){
109109
names = unique(sapply(strsplit(colnames(sims), "\\."), function(x) x[1]))
110110

111111
combs = combn(names, 2)
112-
vals = apply(combs, 2, function(x) SCLOP(dendTopics.intern(sims = sims, ind = paste0(x, "\\."))))
112+
vals = apply(combs, 2, function(x) SCLOP(dendTopics_intern(sims = sims, ind = paste0(x, "\\."))))
113113

114114
mat = matrix(ncol = length(names), nrow = length(names))
115115
i = match(combs[2,], names)

R/dendTopics.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ dendTopics.default = function(sims, ind, method = "complete"){
9999
invisible(dend)
100100
}
101101

102-
dendTopics.intern = function(sims, ind){
102+
dendTopics_intern = function(sims, ind){
103103
ind = rowSums(sapply(ind, grepl, x = colnames(sims))) > 0
104104
dend = as.dendrogram(hclust(as.dist(1 - sims[ind, ind]), method = "complete"))
105105

R/rboTopics.R

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
#' @references Webber, William, Alistair Moffat and Justin Zobel (2010).
1818
#' "A similarity measure for indefinite rankings".
1919
#' In: \emph{ACM Transations on Information Systems} 28(4), p.20:1–-20:38,
20-
#' DOI 10.1145/1852102.1852106,
21-
#' URL \url{https://doi.acm.org/10.1145/1852102.1852106}
20+
#' \doi{10.1145/1852102.1852106}.
2221
#'
2322
#' @family TopicSimilarity functions
2423
#'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![CRAN](https://www.r-pkg.org/badges/version/ldaPrototype)](https://cran.r-project.org/package=ldaPrototype)
44
[![R build status](https://github.com/JonasRieger/ldaPrototype/workflows/R-CMD-check/badge.svg)](https://github.com/JonasRieger/ldaPrototype/actions)
55
[![Build status](https://ci.appveyor.com/api/projects/status/6nm48mamn79n6xf4?svg=true)](https://ci.appveyor.com/project/JonasRieger/ldaprototype)
6-
[![codecov](https://codecov.io/gh/JonasRieger/ldaPrototype/branch/master/graph/badge.svg?token=IUWLTOW2HV)](https://codecov.io/gh/JonasRieger/ldaPrototype)
6+
[![codecov](https://codecov.io/gh/JonasRieger/ldaPrototype/branch/master/graph/badge.svg?token=IUWLTOW2HV)](https://app.codecov.io/gh/JonasRieger/ldaPrototype)
77
[![DOI](https://zenodo.org/badge/187803702.svg)](https://zenodo.org/badge/latestdoi/187803702)
88

99
## Prototype of Multiple Latent Dirichlet Allocation Runs

inst/CITATION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
citHeader("To cite ldaPrototype in publications use:")
22

3-
citEntry(entry = "Article",
3+
bibentry(bibtype = "Article",
44
title = "{ldaPrototype}: A method in {R} to get a Prototype of multiple Latent Dirichlet Allocations",
55
author = "Jonas Rieger",
66
journal = "Journal of Open Source Software",

man/LDABatch.Rd

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/rboTopics.Rd

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)