diff --git a/.Rprofile b/.Rprofile
index 48d941ae..43eece16 100644
--- a/.Rprofile
+++ b/.Rprofile
@@ -9,6 +9,26 @@ options(repos = c("https://cran.microsoft.com/snapshot/2020-05-01"))
# .libPaths(new = "~/histopathRprojects/ClinicoPathLibrary")
+
+# options(repos = c("https://cran.microsoft.com/snapshot/2020-05-01"))
+
+# .libPaths(new = "C:\\ClinicoPathLibrary")
+
+# Sys.setenv(TZ = "Europe/Istanbul")
+
+# Sys.setenv(TEMP = "C:\\temp")
+
+# Sys.setenv(TMP = "C:\\temp")
+
+
+# jmvtools::check("C://Program Files//jamovi//bin")
+# jmvtools::install(home = "C://Program Files//jamovi//bin")
+#
+#
+#
+
+
+
# source(
# "renv/activate.R"
# "~/histopathRprojects/ClinicoPath/renv/activate.R"
diff --git a/DESCRIPTION b/DESCRIPTION
index 7a31e295..3554a1d3 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -1,8 +1,8 @@
Type: Package
Package: ClinicoPath
Title: Analysis for Clinicopathological Research
-Version: 0.0.2.0015
-Date: 2020-06-28
+Version: 0.0.2.0016
+Date: 2020-06-29
Authors@R:
person(given = "Serdar",
family = "Balci",
diff --git a/NEWS.md b/NEWS.md
index 59c03839..208276df 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,9 +1,24 @@
+# ClinicoPath 0.0.2.0016
+
+- See: https://github.com/sbalci/jjstatsplot/releases/
+
+- See: https://github.com/sbalci/ClinicoPath/releases/
+
+- crosstable function partially resolves https://github.com/jamovi/jamovi/issues/443
+
+- survival function resolves https://github.com/jonathon-love/deathwatch/issues/2
+
+- added export html to crosstables to bypass https://github.com/jamovi/jamovi/issues/892
+
+
+
+
# ClinicoPath 0.0.2.0015
- Added tangram statistical results
- Added options to finalfit crosstables
fixes: https://github.com/sbalci/ClinicoPathJamoviModule/issues/24
-fixes: https://github.com/jamovi/jamovi/issues/901
+Partially fixes: https://github.com/jamovi/jamovi/issues/901
fixes: https://github.com/ewenharrison/finalfit/issues/52
- Added experimental biblometrics functions
diff --git a/R/00jmv.R b/R/00jmv.R
index 01d86137..5d4ad9b7 100644
--- a/R/00jmv.R
+++ b/R/00jmv.R
@@ -314,22 +314,23 @@
`url`="https://CRAN.R-project.org/package=hrbrthemes"),
`retractcheck`=list(
`type`="software",
- `author`=NULL,
- `year`=NULL,
- `title`="",
- `publisher`="[R package]. Retrieved from https://CRAN.R-project.org/package=",
- `url`="https://CRAN.R-project.org/package="),
+ `author`="Chris Hartgerink and Frederik Aust",
+ `year`=2019,
+ `title`="retractcheck: Retraction Scanner",
+ `publisher`="[R package]. Retrieved from https://CRAN.R-project.org/package=retractcheck",
+ `url`="https://CRAN.R-project.org/package=retractcheck"),
`RefManageR`=list(
`type`="software",
- `author`=NULL,
- `year`=NULL,
- `title`="",
- `publisher`="[R package]. Retrieved from https://CRAN.R-project.org/package=",
- `url`="https://CRAN.R-project.org/package="),
+ `author`="McLean MW",
+ `year`=2017,
+ `title`="RefManageR: Import and Manage BibTeX and BibLaTeX References in R. The Journal of Open Source Software.",
+ `doi`="10.21105/joss.00338",
+ `publisher`="[R package]. Retrieved from https://CRAN.R-project.org/package=RefManageR",
+ `url`="https://CRAN.R-project.org/package=RefManageR"),
`rcrossref`=list(
`type`="software",
- `author`=NULL,
- `year`=NULL,
- `title`="",
- `publisher`="[R package]. Retrieved from https://CRAN.R-project.org/package=",
- `url`="https://CRAN.R-project.org/package="))
+ `author`="Scott Chamberlain and Hao Zhu and Najko Jahn and Carl Boettiger and Karthik Ram",
+ `year`=2020,
+ `title`="rcrossref: Client for Various 'CrossRef' 'APIs'",
+ `publisher`="[R package]. Retrieved from https://CRAN.R-project.org/package=rcrossref",
+ `url`="https://CRAN.R-project.org/package=rcrossref"))
diff --git a/R/crosstable.b.R b/R/crosstable.b.R
index 3be0f0e0..75051e6c 100644
--- a/R/crosstable.b.R
+++ b/R/crosstable.b.R
@@ -268,10 +268,29 @@ crosstableClass <- if (requireNamespace('jmvcore')) R6::R6Class(
if (export)
{
+
+
+
+ if (.Platform$OS.type == "windows") {
+
+ stopifnot(file.exists("C:\\temp2"))
+
+ write(
+ x = tabletangram,
+ file = "C:\\temp2\\ClinicoPathCrossTable.html"
+ )
+
+
+ } else {
+
+
write(x = tabletangram,
file = "~/Documents/ClinicoPathCrossTable.html"
-
)
+
+ }
+
+
}
diff --git a/R/tree.b.R b/R/tree.b.R
index d881e4a8..8cd1cdee 100644
--- a/R/tree.b.R
+++ b/R/tree.b.R
@@ -85,7 +85,7 @@ treeClass <- if (requireNamespace('jmvcore')) R6::R6Class(
tree <- rpart::rpart(myformula, data = mydata, cp = .02)
- # self$results$text2$setContent(tree)
+ self$results$text2$setContent(tree)
# FFTrees ----
@@ -113,7 +113,7 @@ treeClass <- if (requireNamespace('jmvcore')) R6::R6Class(
- # self$results$text2$setContent(mydata)
+ self$results$text2$setContent(mydata)
}
@@ -200,6 +200,7 @@ treeClass <- if (requireNamespace('jmvcore')) R6::R6Class(
myformula <- as.formula(myformula)
# FFTrees ----
+ # https://ndphillips.github.io/useR2017_pres/#1
mytree.fft <- FFTrees::FFTrees(
formula = myformula,
@@ -250,7 +251,9 @@ treeClass <- if (requireNamespace('jmvcore')) R6::R6Class(
myformula <- as.formula(myformula)
- tree <- rpart::rpart(myformula, data = mydata, cp = .02)
+ tree <- rpart::rpart(myformula,
+ data = mydata,
+ cp = .02)
plot3 <- rpart.plot::rpart.plot(tree,
diff --git a/README.Rmd b/README.Rmd
index 3978c569..44317aa4 100644
--- a/README.Rmd
+++ b/README.Rmd
@@ -4,7 +4,7 @@ output: github_document
-```{r, include = FALSE}
+```{r global options, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
@@ -64,17 +64,41 @@ Then you can install this module directly inside the jamovi, using library.
## Installation via sideload [jamovi](https://www.jamovi.org)
-- Step 1: Download and install [jamovi](https://www.jamovi.org).
+**Step 1: Download and install [jamovi](https://www.jamovi.org).**
-- Step 2: Download the relevant `jmo` file for your operating system from
+**Step 2: Download the relevant `jmo` file for your operating system from**
+
+*a: For development version*
- - a: For development version
- [releases](https://github.com/sbalci/ClinicoPathJamoviModule/releases/)
- [sourceforge](https://sourceforge.net/projects/clinicopathjamovimodule/files/latest/download).
- - b: For stable version
+
+*b: For smaller modules*
+
+
+- ClinicoPath:
+
+
+https://github.com/sbalci/ClinicoPath
+
+
+https://github.com/sbalci/ClinicoPath/releases
+
+
+- JJStatsPlot:
+
+
+https://github.com/sbalci/jjstatsplot
+
+https://github.com/sbalci/jjstatsplot/releases/
+
+
+*c: For stable version*
+
+
- windows: https://library.jamovi.org/win64/R3.6.3/ClinicoPath-0.0.2.jmo
@@ -84,7 +108,7 @@ Then you can install this module directly inside the jamovi, using library.
-- Step 3: And install using side-load as shown below:
+**Step 3: And install using side-load as shown below:**
diff --git a/README.md b/README.md
index bf31ab71..6a1a5f2f 100644
--- a/README.md
+++ b/README.md
@@ -45,18 +45,31 @@ library.
## Installation via sideload [jamovi](https://www.jamovi.org)
- - Step 1: Download and install [jamovi](https://www.jamovi.org).
+**Step 1: Download and install [jamovi](https://www.jamovi.org).**
- - Step 2: Download the relevant `jmo` file for your operating system
- from
-
- - a: For development version
+**Step 2: Download the relevant `jmo` file for your operating system
+from**
- - [releases](https://github.com/sbalci/ClinicoPathJamoviModule/releases/)
+*a: For development version*
+ - [releases](https://github.com/sbalci/ClinicoPathJamoviModule/releases/)
- [sourceforge](https://sourceforge.net/projects/clinicopathjamovimodule/files/latest/download).
-
- - b: For stable version
+
+*b: For smaller modules*
+
+ - ClinicoPath:
+
+
+
+
+
+ - JJStatsPlot:
+
+
+
+
+
+*c: For stable version*
- windows:
@@ -66,7 +79,7 @@ library.
- - Step 3: And install using side-load as shown below:
+**Step 3: And install using side-load as shown below:**
@@ -293,21 +306,23 @@ Binder](http://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/sbalci/C
Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/sbalci/ClinicoPathJamoviModule)
[![Download
ClinicoPathJamoviModule](https://img.shields.io/sourceforge/dt/clinicopathjamovimodule.svg)](https://sourceforge.net/projects/clinicopathjamovimodule/files/latest/download)
-[![Project Status: WIP – Initial development is in progress, but there
-has not yet been a stable, usable release suitable for the
-public.](https://www.repostatus.org/badges/latest/wip.svg)](https://www.repostatus.org/#wip)
-[![lifecycle](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/)
-[![stability-experimental](https://img.shields.io/badge/stability-experimental-orange.svg)](https://github.com/joethorley/stability-badges#experimental)
+[![Project Status: Active – The project has reached a stable, usable
+state and is being actively
+developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
+[![lifecycle](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://www.tidyverse.org/lifecycle/)
+[![stability-unstable](https://img.shields.io/badge/stability-unstable-yellow.svg)](https://github.com/joethorley/stability-badges#unstable)
[![GitHub
issues](https://img.shields.io/github/issues/sbalci/clinicopathjamovimodule.svg)](https://github.com/sbalci/clinicopathjamovimodule/issues)
-![GitHub
-issues](https://img.shields.io/github/issues/sbalci/clinicopathjamovimodule)
+![R CMD Check via
+{tic}](https://github.com/sbalci/ClinicoPathJamoviModule/workflows/R%20CMD%20Check%20via%20%7Btic%7D/badge.svg)
+![Render
+README](https://github.com/sbalci/ClinicoPathJamoviModule/workflows/Render%20README/badge.svg)
![R-CMD-check](https://github.com/sbalci/ClinicoPathJamoviModule/workflows/R-CMD-check/badge.svg)
[![Codacy
-Badge](https://api.codacy.com/project/badge/Grade/e15104a9086c48d39f7cd822972d399f)](https://www.codacy.com/manual/drserdarbalci/JournalWatchPBPath?utm_source=github.com&utm_medium=referral&utm_content=sbalci/JournalWatchPBPath&utm_campaign=Badge_Grade)
-[![CodeFactor](https://www.codefactor.io/repository/github/sbalci/clinicopathjamovimodule/badge)](https://www.codefactor.io/repository/github/sbalci/clinicopathjamovimodule)
+Badge](https://app.codacy.com/project/badge/Grade/cdf2bede535c439d826b6dffdff40764)](https://www.codacy.com/manual/drserdarbalci/ClinicoPathJamoviModule?utm_source=github.com&utm_medium=referral&utm_content=sbalci/ClinicoPathJamoviModule&utm_campaign=Badge_Grade)
+[![CodeFactor](https://www.codefactor.io/repository/github/sbalci/clinicopathjamovimodule/badge)](https://www.codefactor.io/repository/github/sbalci/clinicopathjamovimodule)
[![Coverage
-Status](https://coveralls.io/repos/github/sbalci/clinicopathjamovimodule/badge.svg?branch=master)](https://coveralls.io/github/sbalci/clinicopathjamovimodule?branch=master)
+Status](https://coveralls.io/repos/github/sbalci/ClinicoPathJamoviModule/badge.svg?branch=master)](https://coveralls.io/github/sbalci/ClinicoPathJamoviModule?branch=master)
[![Build
Status](https://travis-ci.com/sbalci/ClinicoPathJamoviModule.svg?branch=master)](https://travis-ci.com/sbalci/ClinicoPathJamoviModule)
[![Build
@@ -315,35 +330,27 @@ status](https://ci.appveyor.com/api/projects/status/ftdd497g9qamm4ov?svg=true)](
[![codecov](https://codecov.io/gh/sbalci/ClinicoPathJamoviModule/branch/master/graph/badge.svg)](https://codecov.io/gh/sbalci/ClinicoPathJamoviModule)
[![CircleCI](https://circleci.com/gh/sbalci/ClinicoPathJamoviModule.svg?style=svg)](https://circleci.com/gh/sbalci/ClinicoPathJamoviModule)
[![GuardRails
-badge](https://badges.guardrails.io/sbalci/ClinicoPathJamoviModule.svg?token=9402aef8ace3415bad8f423a384b631c7319e5faffc96e2e299b603ace62d68e&provider=github)](https://dashboard.guardrails.io/default/gh/sbalci/ClinicoPathJamoviModule)
+badge](https://badges.guardrails.io/sbalci/ClinicoPathJamoviModule.svg?token=9402aef8ace3415bad8f423a384b631c7319e5faffc96e2e299b603ace62d68e&provider=github)](https://dashboard.guardrails.io/gh/sbalci/33943)
[![Maintainability](https://api.codeclimate.com/v1/badges/692e4af79330f43dac48/maintainability)](https://codeclimate.com/github/sbalci/ClinicoPathJamoviModule/maintainability)
[![Test
Coverage](https://api.codeclimate.com/v1/badges/692e4af79330f43dac48/test_coverage)](https://codeclimate.com/github/sbalci/ClinicoPathJamoviModule/test_coverage)
-[![DepShield
-Badge](https://depshield.sonatype.org/badges/sbalci/ClinicoPathJamoviModule/depshield.svg)](https://depshield.github.io)
![GitHub](https://img.shields.io/github/license/sbalci/clinicopathjamovimodule.svg)
-[![GitHub
-version](https://img.shields.io/badge/GitHub-0.0.1.1000-orange.svg?style=flat-square)](https://github.com/sbalci/clinicopathjamovimodule/)
[![GitHub last
commit](https://img.shields.io/github/last-commit/sbalci/clinicopathjamovimodule)](https://github.com/sbalci/clinicopathjamovimodule/commits/master)
-[![Last-changedate](https://img.shields.io/badge/last%20change-2020--05--25-yellowgreen.svg)](https://github.com/sbalci/clinicopathjamovimodule/commits/master)
+[![Last-changedate](https://img.shields.io/badge/last%20change-2020--06--30-yellowgreen.svg)](https://github.com/sbalci/clinicopathjamovimodule/commits/master)
![GitHub Release
Date](https://img.shields.io/github/release-date/sbalci/clinicopathjamovimodule)
-![GitHub last
-commit](https://img.shields.io/github/last-commit/sbalci/clinicopathjamovimodule)
![GitHub commit
activity](https://img.shields.io/github/commit-activity/m/sbalci/clinicopathjamovimodule)
-[![Website](https://img.shields.io/badge/website-clinicopathjamovimodule-orange.svg?colorB=E91E63)](https://sbalci.github.io/clinicopathjamovimodule/)
+[![Website](https://img.shields.io/badge/website-ClinicoPathJamoviModule-orange.svg?colorB=E91E63)](https://sbalci.github.io/ClinicoPathJamoviModule/)
[![GitHub code size in
-bytes](https://img.shields.io/github/languages/code-size/sbalci/clinicopathjamovimodule.svg)](https://github.com/sbalci/clinicopathjamovimodule)
+bytes](https://img.shields.io/github/languages/code-size/sbalci/clinicopathjamovimodule.svg)](https://github.com/sbalci/ClinicoPathJamoviModule)
[![minimal R
-version](https://img.shields.io/badge/R%3E%3D-3.6.0-6666ff.svg)](https://cran.r-project.org/)
+version](https://img.shields.io/badge/R%3E%3D-3.6.3-6666ff.svg)](https://cran.r-project.org/)
[![Libraries.io dependency status for GitHub
repo](https://img.shields.io/librariesio/github/sbalci/clinicopathjamovimodule.svg)](https://libraries.io/github/sbalci/clinicopathjamovimodule)
[![Requirements
Status](https://requires.io/github/sbalci/ClinicoPathJamoviModule/requirements.svg?branch=gh-pages)](https://requires.io/github/sbalci/ClinicoPathJamoviModule/requirements/?branch=gh-pages)
-[![DepShield
-Badge](https://depshield.sonatype.org/badges/sbalci/clinicopathjamovimodule/depshield.svg)](https://depshield.github.io)
[![GitHub
forks](https://img.shields.io/github/forks/sbalci/clinicopathjamovimodule.svg)](https://github.com/sbalci/clinicopathjamovimodule/network)
![GitHub
@@ -354,9 +361,6 @@ stars](https://img.shields.io/github/stars/sbalci/clinicopathjamovimodule.svg)](
Stars](https://img.shields.io/github/stars/sbalci/clinicopathjamovimodule.svg?style=social&label=Github)](https://github.com/sbalci/clinicopathjamovimodule)
![GitHub
stars](https://img.shields.io/github/stars/sbalci/clinicopathjamovimodule?style=social)
-[![Twitter](https://img.shields.io/twitter/url/https/github.com/sbalci/clinicopathjamovimodule.svg?style=social)](https://twitter.com/intent/tweet?text=A%20@jamovistats%20module%20for%20%23histopathology%20%23clinicopathology%20%23pathology%20%23research%20using%20various%20%23rstats%20packages%20📦.%20@serdarbalci&url=https%3A%2F%2Fsbalci.github.io%2ClinicoPathJamoviModule%2)
-![Twitter
-URL](https://img.shields.io/twitter/url?style=social&url=https%3A%2F%2Fsbalci.github.io%2FClinicoPathJamoviModule%2F)
[![contributions
welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/sbalci/clinicopathjamovimodule/issues)
![GitHub
@@ -372,11 +376,11 @@ Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=git
ClinicoPathJamoviModule](https://img.shields.io/sourceforge/dt/clinicopathjamovimodule.svg)](https://sourceforge.net/projects/clinicopathjamovimodule/files/latest/download)
**Status**
-[![Project Status: WIP – Initial development is in progress, but there
-has not yet been a stable, usable release suitable for the
-public.](https://www.repostatus.org/badges/latest/wip.svg)](https://www.repostatus.org/#wip)
-[![lifecycle](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/)
-[![stability-experimental](https://img.shields.io/badge/stability-experimental-orange.svg)](https://github.com/joethorley/stability-badges#experimental)
+[![Project Status: Active – The project has reached a stable, usable
+state and is being actively
+developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
+[![lifecycle](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://www.tidyverse.org/lifecycle/)
+[![stability-unstable](https://img.shields.io/badge/stability-unstable-yellow.svg)](https://github.com/joethorley/stability-badges#unstable)
[![GitHub
issues](https://img.shields.io/github/issues/sbalci/clinicopathjamovimodule.svg)](https://github.com/sbalci/clinicopathjamovimodule/issues)
![GitHub
@@ -384,11 +388,12 @@ issues](https://img.shields.io/github/issues/sbalci/clinicopathjamovimodule)
**Check, CI**
![R-CMD-check](https://github.com/sbalci/ClinicoPathJamoviModule/workflows/R-CMD-check/badge.svg)
-[![CodeFactor](https://www.codefactor.io/repository/github/sbalci/clinicopathjamovimodule/badge)](https://www.codefactor.io/repository/github/sbalci/clinicopathjamovimodule)
+
[![Codacy
-Badge](https://api.codacy.com/project/badge/Grade/e15104a9086c48d39f7cd822972d399f)](https://www.codacy.com/manual/drserdarbalci/JournalWatchPBPath?utm_source=github.com&utm_medium=referral&utm_content=sbalci/JournalWatchPBPath&utm_campaign=Badge_Grade)
+Badge](https://app.codacy.com/project/badge/Grade/cdf2bede535c439d826b6dffdff40764)](https://www.codacy.com/manual/drserdarbalci/ClinicoPathJamoviModule?utm_source=github.com&utm_medium=referral&utm_content=sbalci/ClinicoPathJamoviModule&utm_campaign=Badge_Grade)
+[![CodeFactor](https://www.codefactor.io/repository/github/sbalci/clinicopathjamovimodule/badge)](https://www.codefactor.io/repository/github/sbalci/clinicopathjamovimodule)
[![Coverage
-Status](https://coveralls.io/repos/github/sbalci/clinicopathjamovimodule/badge.svg?branch=master)](https://coveralls.io/github/sbalci/clinicopathjamovimodule?branch=master)
+Status](https://coveralls.io/repos/github/sbalci/ClinicoPathJamoviModule/badge.svg?branch=master)](https://coveralls.io/github/sbalci/ClinicoPathJamoviModule?branch=master)
[![Build
Status](https://travis-ci.com/sbalci/ClinicoPathJamoviModule.svg?branch=master)](https://travis-ci.com/sbalci/ClinicoPathJamoviModule)
[![Build
@@ -396,41 +401,36 @@ status](https://ci.appveyor.com/api/projects/status/ftdd497g9qamm4ov?svg=true)](
[![codecov](https://codecov.io/gh/sbalci/ClinicoPathJamoviModule/branch/master/graph/badge.svg)](https://codecov.io/gh/sbalci/ClinicoPathJamoviModule)
[![CircleCI](https://circleci.com/gh/sbalci/ClinicoPathJamoviModule.svg?style=svg)](https://circleci.com/gh/sbalci/ClinicoPathJamoviModule)
[![GuardRails
-badge](https://badges.guardrails.io/sbalci/ClinicoPathJamoviModule.svg?token=9402aef8ace3415bad8f423a384b631c7319e5faffc96e2e299b603ace62d68e&provider=github)](https://dashboard.guardrails.io/default/gh/sbalci/ClinicoPathJamoviModule)
+badge](https://badges.guardrails.io/sbalci/ClinicoPathJamoviModule.svg?token=9402aef8ace3415bad8f423a384b631c7319e5faffc96e2e299b603ace62d68e&provider=github)](https://dashboard.guardrails.io/gh/sbalci/33943)
[![Maintainability](https://api.codeclimate.com/v1/badges/692e4af79330f43dac48/maintainability)](https://codeclimate.com/github/sbalci/ClinicoPathJamoviModule/maintainability)
[![Test
Coverage](https://api.codeclimate.com/v1/badges/692e4af79330f43dac48/test_coverage)](https://codeclimate.com/github/sbalci/ClinicoPathJamoviModule/test_coverage)
-[![DepShield
-Badge](https://depshield.sonatype.org/badges/sbalci/ClinicoPathJamoviModule/depshield.svg)](https://depshield.github.io)
+
**Recency, Updates**
![GitHub](https://img.shields.io/github/license/sbalci/clinicopathjamovimodule.svg)
-[![GitHub
-version](https://img.shields.io/badge/GitHub-0.0.1.1000-orange.svg?style=flat-square)](https://github.com/sbalci/clinicopathjamovimodule/)
+
[![GitHub last
commit](https://img.shields.io/github/last-commit/sbalci/clinicopathjamovimodule)](https://github.com/sbalci/clinicopathjamovimodule/commits/master)
-[![Last-changedate](https://img.shields.io/badge/last%20change-2020--05--25-yellowgreen.svg)](https://github.com/sbalci/clinicopathjamovimodule/commits/master)
+[![Last-changedate](https://img.shields.io/badge/last%20change-2020--06--30-yellowgreen.svg)](https://github.com/sbalci/clinicopathjamovimodule/commits/master)
![GitHub Release
Date](https://img.shields.io/github/release-date/sbalci/clinicopathjamovimodule)
-![GitHub last
-commit](https://img.shields.io/github/last-commit/sbalci/clinicopathjamovimodule)
![GitHub commit
activity](https://img.shields.io/github/commit-activity/m/sbalci/clinicopathjamovimodule)
**Webpage, Links, Size, Download**
-[![Website](https://img.shields.io/badge/website-clinicopathjamovimodule-orange.svg?colorB=E91E63)](https://sbalci.github.io/clinicopathjamovimodule/)
+[![Website](https://img.shields.io/badge/website-ClinicoPathJamoviModule-orange.svg?colorB=E91E63)](https://sbalci.github.io/ClinicoPathJamoviModule/)
[![GitHub code size in
-bytes](https://img.shields.io/github/languages/code-size/sbalci/clinicopathjamovimodule.svg)](https://github.com/sbalci/clinicopathjamovimodule)
+bytes](https://img.shields.io/github/languages/code-size/sbalci/clinicopathjamovimodule.svg)](https://github.com/sbalci/ClinicoPathJamoviModule)
**Dependencies**
[![minimal R
-version](https://img.shields.io/badge/R%3E%3D-3.6.0-6666ff.svg)](https://cran.r-project.org/)
+version](https://img.shields.io/badge/R%3E%3D-3.6.3-6666ff.svg)](https://cran.r-project.org/)
[![Libraries.io dependency status for GitHub
repo](https://img.shields.io/librariesio/github/sbalci/clinicopathjamovimodule.svg)](https://libraries.io/github/sbalci/clinicopathjamovimodule)
[![Requirements
Status](https://requires.io/github/sbalci/ClinicoPathJamoviModule/requirements.svg?branch=gh-pages)](https://requires.io/github/sbalci/ClinicoPathJamoviModule/requirements/?branch=gh-pages)
-[![DepShield
-Badge](https://depshield.sonatype.org/badges/sbalci/clinicopathjamovimodule/depshield.svg)](https://depshield.github.io)
+
**Interaction, Shares**
[![GitHub
@@ -444,8 +444,6 @@ Stars](https://img.shields.io/github/stars/sbalci/clinicopathjamovimodule.svg?st
![GitHub
stars](https://img.shields.io/github/stars/sbalci/clinicopathjamovimodule?style=social)
[![Twitter](https://img.shields.io/twitter/url/https/github.com/sbalci/clinicopathjamovimodule.svg?style=social)](https://twitter.com/intent/tweet?text=A%20@jamovistats%20module%20for%20%23histopathology%20%23clinicopathology%20%23pathology%20%23research%20using%20various%20%23rstats%20packages%20📦.%20@serdarbalci&url=https%3A%2F%2Fsbalci.github.io%2ClinicoPathJamoviModule%2)
-![Twitter
-URL](https://img.shields.io/twitter/url?style=social&url=https%3A%2F%2Fsbalci.github.io%2FClinicoPathJamoviModule%2F)
[![contributions
welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/sbalci/clinicopathjamovimodule/issues)
![GitHub
diff --git a/codemeta.json b/codemeta.json
index 4e753a62..937c3254 100644
--- a/codemeta.json
+++ b/codemeta.json
@@ -14,7 +14,7 @@
],
"issueTracker": "\n https://github.com/sbalci/ClinicoPathJamoviModule/issues/",
"license": "https://spdx.org/licenses/GPL-3.0",
- "version": "0.0.2.15",
+ "version": "0.0.2.16",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
@@ -657,6 +657,6 @@
"survival-analysis",
"natural-language-summaries"
],
- "fileSize": "301.543KB",
+ "fileSize": "302.144KB",
"readme": "https://github.com/sbalci/ClinicoPathJamoviModule/blob/master/README.md"
}
diff --git a/data/histopathology.omv b/data/histopathology.omv
index 11ef86ca..4b3cbd89 100644
Binary files a/data/histopathology.omv and b/data/histopathology.omv differ
diff --git a/inst/extdata/histopathology.omv b/inst/extdata/histopathology.omv
index 61b27bf2..11ef86ca 100644
Binary files a/inst/extdata/histopathology.omv and b/inst/extdata/histopathology.omv differ
diff --git a/jamovi/0000.yaml b/jamovi/0000.yaml
index ab12a056..8567fa92 100644
--- a/jamovi/0000.yaml
+++ b/jamovi/0000.yaml
@@ -1,12 +1,12 @@
---
title: Common Analysis for Clinicopathological Research
name: ClinicoPath
-version: 0.0.2.0015
+version: 0.0.2.0016
jms: '1.0'
authors:
- Serdar Balci
maintainer: Serdar Balci
-date: '2020-06-28'
+date: '2020-06-29'
type: R
description: >-
ClinicoPath help researchers to generate natural language summaries of their
diff --git a/jamovi/00refs.yaml b/jamovi/00refs.yaml
index ac5b2bf7..ec7ceaaa 100644
--- a/jamovi/00refs.yaml
+++ b/jamovi/00refs.yaml
@@ -365,29 +365,30 @@ refs:
retractcheck:
type: 'software'
- author:
- year:
- title: ""
- publisher: '[R package]. Retrieved from https://CRAN.R-project.org/package='
- url: https://CRAN.R-project.org/package=
+ author: Chris Hartgerink and Frederik Aust
+ year: 2019
+ title: "retractcheck: Retraction Scanner"
+ publisher: '[R package]. Retrieved from https://CRAN.R-project.org/package=retractcheck'
+ url: https://CRAN.R-project.org/package=retractcheck
RefManageR:
type: 'software'
- author:
- year:
- title: ""
- publisher: '[R package]. Retrieved from https://CRAN.R-project.org/package='
- url: https://CRAN.R-project.org/package=
+ author: McLean MW
+ year: 2017
+ title: 'RefManageR: Import and Manage BibTeX and BibLaTeX References in R. The Journal of Open Source Software.'
+ doi: 10.21105/joss.00338
+ publisher: '[R package]. Retrieved from https://CRAN.R-project.org/package=RefManageR'
+ url: https://CRAN.R-project.org/package=RefManageR
rcrossref:
type: 'software'
- author:
- year:
- title: ""
- publisher: '[R package]. Retrieved from https://CRAN.R-project.org/package='
- url: https://CRAN.R-project.org/package=
+ author: Scott Chamberlain and Hao Zhu and Najko Jahn and Carl Boettiger and Karthik Ram
+ year: 2020
+ title: "rcrossref: Client for Various 'CrossRef' 'APIs'"
+ publisher: '[R package]. Retrieved from https://CRAN.R-project.org/package=rcrossref'
+ url: https://CRAN.R-project.org/package=rcrossref
...
diff --git a/tododata/todo.Rmd b/tododata/todo.Rmd
index f37956ae..ff48ea6d 100644
--- a/tododata/todo.Rmd
+++ b/tododata/todo.Rmd
@@ -1065,24 +1065,13 @@ readyfunctions <- c(
"^oddsratio",
# "^competingsurvival",
-# JJ Functions
- "statsplot2",
- "^jjbarstats\\.",
- "^jjbetweenstats",
- "^jjcorrmat",
- "^jjdotplotstats",
- "^jjhistostats",
- "^jjpiestats",
- "^jjscatterstats",
- "^jjwithinstats",
-
# Agreement
- "^agreement"
+ "^agreement",
# "^icccoeff",
# Decision
- # "^decision",
- # "^decisioncalculator",
+ "^decision",
+ "^decisioncalculator"
# "^roc",
# "^tree"
)