From 2ae71a999492438cf77e1f8a1735c4a8c85f4725 Mon Sep 17 00:00:00 2001 From: June Choe Date: Mon, 24 Jul 2023 11:26:08 +0900 Subject: [PATCH] reexport stopJulia --- NAMESPACE | 2 ++ R/interop-utils.R | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/NAMESPACE b/NAMESPACE index af1b0d7..4b8f2a4 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -15,6 +15,7 @@ S3method(tidy,empirical_clusters) S3method(tidy,jlmer_mod) S3method(tidy,null_cluster_dists) S3method(tidy,timewise_statistics) +export() export(calculate_clusters_pvalues) export(clusterpermute) export(clusters_are_comparable) @@ -37,6 +38,7 @@ export(set_rng_state) export(tidy) export(to_jlmer) export(walk_threshold_steps) +importFrom(JuliaConnectoR,stopJulia) importFrom(generics,glance) importFrom(generics,tidy) importFrom(stats,setNames) diff --git a/R/interop-utils.R b/R/interop-utils.R index 6de7b77..8be5109 100644 --- a/R/interop-utils.R +++ b/R/interop-utils.R @@ -1,3 +1,7 @@ +#' @importFrom JuliaConnectoR stopJulia +#' @export +JuliaConnectoR::stopJulia() + #' Set/get options for Julia progress bar #' #' @param show Whether to show the progress bar. You may also pass in a list of `"show"` and `"width"`.