Skip to content

Commit

Permalink
chore: styler
Browse files Browse the repository at this point in the history
  • Loading branch information
jiajic committed Oct 27, 2024
1 parent 84eaf28 commit 7cc973c
Show file tree
Hide file tree
Showing 45 changed files with 2,303 additions and 2,544 deletions.
112 changes: 59 additions & 53 deletions R/NN_network.R
Original file line number Diff line number Diff line change
Expand Up @@ -128,15 +128,16 @@ NULL

#' @rdname createNetwork
#' @export
createNetwork <- function(x,
type = c("sNN", "kNN", "delaunay"),
method = c("dbscan", "geometry", "RTriangle", "deldir"),
node_ids = NULL,
include_distance = TRUE,
include_weight = TRUE,
as.igraph = TRUE,
verbose = NULL,
...) {
createNetwork <- function(
x,
type = c("sNN", "kNN", "delaunay"),
method = c("dbscan", "geometry", "RTriangle", "deldir"),
node_ids = NULL,
include_distance = TRUE,
include_weight = TRUE,
as.igraph = TRUE,
verbose = NULL,
...) {
# NSE vars
from <- to <- NULL

Expand Down Expand Up @@ -211,11 +212,12 @@ createNetwork <- function(x,


# x input is a matrix
.net_dt_knn <- function(x, k = 30L, include_weight = TRUE, include_distance = TRUE,
filter = FALSE,
maximum_distance = NULL, minimum_k = 0L,
weight_fun = function(d) 1 / (1 + d),
verbose = NULL, ...) {
.net_dt_knn <- function(
x, k = 30L, include_weight = TRUE, include_distance = TRUE,
filter = FALSE,
maximum_distance = NULL, minimum_k = 0L,
weight_fun = function(d) 1 / (1 + d),
verbose = NULL, ...) {
# NSE vars
from <- to <- distance <- NULL

Expand Down Expand Up @@ -268,10 +270,11 @@ createNetwork <- function(x,
}

# x input is a matrix
.net_dt_snn <- function(x, k = 30L, include_weight = TRUE, include_distance = TRUE,
top_shared = 3L, minimum_shared = 5L,
weight_fun = function(d) 1 / (1 + d),
verbose = NULL, ...) {
.net_dt_snn <- function(
x, k = 30L, include_weight = TRUE, include_distance = TRUE,
top_shared = 3L, minimum_shared = 5L,
weight_fun = function(d) 1 / (1 + d),
verbose = NULL, ...) {
# NSE vars
from <- to <- shared <- distance <- NULL

Expand Down Expand Up @@ -318,9 +321,10 @@ createNetwork <- function(x,
return(snn_network_dt)
}

.net_dt_del_geometry <- function(x, include_weight = TRUE, options = "Pp", maximum_distance = "auto",
minimum_k = 0L, weight_fun = function(d) 1 / d,
...) {
.net_dt_del_geometry <- function(
x, include_weight = TRUE, options = "Pp", maximum_distance = "auto",
minimum_k = 0L, weight_fun = function(d) 1 / d,
...) {
package_check("geometry", repository = "CRAN:geometry")

# data.table variables
Expand Down Expand Up @@ -371,9 +375,10 @@ createNetwork <- function(x,
return(out_object)
}

.net_dt_del_rtriangle <- function(x, include_weight = TRUE, maximum_distance = "auto", minimum_k = 0L,
Y = TRUE, j = TRUE, S = 0, weight_fun = function(d) 1 / d,
...) {
.net_dt_del_rtriangle <- function(
x, include_weight = TRUE, maximum_distance = "auto", minimum_k = 0L,
Y = TRUE, j = TRUE, S = 0, weight_fun = function(d) 1 / d,
...) {
# NSE vars
from <- to <- distance <- NULL

Expand Down Expand Up @@ -415,9 +420,10 @@ createNetwork <- function(x,
return(out_object)
}

.net_dt_del_deldir <- function(x, include_weight = TRUE, maximum_distance = "auto", minimum_k = 0L,
weight_fun = function(d) 1 / d,
...) {
.net_dt_del_deldir <- function(
x, include_weight = TRUE, maximum_distance = "auto", minimum_k = 0L,
weight_fun = function(d) 1 / d,
...) {
# NSE variables
from <- to <- distance <- NULL

Expand Down Expand Up @@ -606,22 +612,23 @@ edge_distances <- function(x, y, x_node_ids = NULL) {
#'
#' createNearestNetwork(g)
#' @export
createNearestNetwork <- function(gobject,
spat_unit = NULL,
feat_type = NULL,
type = c("sNN", "kNN"),
dim_reduction_to_use = "pca",
dim_reduction_name = NULL,
dimensions_to_use = seq_len(10),
feats_to_use = NULL,
expression_values = c("normalized", "scaled", "custom"),
name = NULL,
return_gobject = TRUE,
k = 30,
minimum_shared = 5,
top_shared = 3,
verbose = TRUE,
...) {
createNearestNetwork <- function(
gobject,
spat_unit = NULL,
feat_type = NULL,
type = c("sNN", "kNN"),
dim_reduction_to_use = "pca",
dim_reduction_name = NULL,
dimensions_to_use = seq_len(10),
feats_to_use = NULL,
expression_values = c("normalized", "scaled", "custom"),
name = NULL,
return_gobject = TRUE,
k = 30,
minimum_shared = 5,
top_shared = 3,
verbose = TRUE,
...) {
# Set feat_type and spat_unit
spat_unit <- set_default_spat_unit(
gobject = gobject,
Expand Down Expand Up @@ -862,16 +869,15 @@ createNearestNetwork <- function(gobject,
#'
#' addNetworkLayout(g)
#' @export
addNetworkLayout <- function(
gobject,
spat_unit = NULL,
feat_type = NULL,
nn_network_to_use = "sNN",
network_name = "sNN.pca",
layout_type = c("drl"),
options_list = NULL,
layout_name = "layout",
return_gobject = TRUE) {
addNetworkLayout <- function(gobject,
spat_unit = NULL,
feat_type = NULL,
nn_network_to_use = "sNN",
network_name = "sNN.pca",
layout_type = c("drl"),
options_list = NULL,
layout_name = "layout",
return_gobject = TRUE) {
## checks
if (is.null(nn_network_to_use) | is.null(network_name)) {
stop("\n first create a nearest network \n")
Expand Down
Loading

0 comments on commit 7cc973c

Please sign in to comment.