Skip to content

Commit c57b17c

Browse files
committed
Release 0.0.1.0001
1 parent 92c7f60 commit c57b17c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+1077
-363
lines changed

.Rbuildignore

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@
3333
^build/R/
3434
^build/js/
3535

36-
tododata
37-
data
38-
vignettes
39-
docs
40-
temp
41-
build
36+
^tododata/
37+
^data/
38+
^vignettes/
39+
^docs/
40+
^temp/
41+
^build/
4242
^.*\.jmo$
4343

4444
^tests$

DESCRIPTION

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: ClinicoPath
22
Type: Package
33
Title: Analysis for Clinicopathological Research
4-
Version: 0.0.1
5-
Date: 2020-03-09
4+
Version: 0.0.1.0001
5+
Date: 2020-03-11
66
Authors@R:
77
person(given = "Serdar",
88
family = "Balci",
@@ -40,7 +40,9 @@ Imports:
4040
knitr,
4141
remotes,
4242
kableExtra,
43-
ggstatsplot
43+
ggstatsplot,
44+
ggalluvial,
45+
networkD3
4446
Remotes:
4547
easystats/modelbased,
4648
easystats/insight,
@@ -51,7 +53,8 @@ Remotes:
5153
Suggests:
5254
effectsize,
5355
emmeans,
54-
rmarkdown
56+
rmarkdown,
57+
igraph
5558
RoxygenNote: 7.0.2
5659
VignetteBuilder: knitr
5760
URL: https://github.com/sbalci/ClinicoPathJamoviModule/, https://sbalci.github.io/ClinicoPathJamoviModule/

NAMESPACE

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,22 @@
11
# Generated by roxygen2: do not edit by hand
22

33
export(crosstable)
4+
export(multisurvival)
45
export(reportcat)
6+
export(statsplot2)
57
export(summarydata)
68
export(survival)
79
export(tableone)
810
import(finalfit)
11+
import(ggalluvial)
12+
import(ggplot2)
13+
import(ggstatsplot)
914
import(jmvcore)
15+
import(networkD3)
1016
import(survival)
1117
import(survminer)
1218
importFrom(R6,R6Class)
19+
importFrom(ggalluvial,StatStratum)
1320
importFrom(jmvcore,toNumeric)
1421
importFrom(purrr,map)
1522
importFrom(rlang,.data)

NEWS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# ClinicoPath 0.0.1.0001
2+
3+
Added multivariate survival, and comparison plots.
4+
5+
6+
7+
18
# ClinicoPath v0.0.1
29

310

R/00jmv.R

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,4 +220,11 @@
220220
`year`=2019,
221221
`title`="survminer: Drawing Survival Curves using 'ggplot2'",
222222
`publisher`="[R package]. Retrieved from https://CRAN.R-project.org/package=survminer",
223-
`url`="https://CRAN.R-project.org/package=survminer"))
223+
`url`="https://CRAN.R-project.org/package=survminer"),
224+
`ggalluvial`=list(
225+
`type`="software",
226+
`author`="Jason Cory Brunson",
227+
`year`=2019,
228+
`title`="ggalluvial: Alluvial Plots in 'ggplot2'.",
229+
`publisher`="[R package]. Retrieved from https://CRAN.R-project.org/package=ggalluvial",
230+
`url`="https://CRAN.R-project.org/package=ggalluvial"))

0 commit comments

Comments
 (0)