Skip to content

Commit

Permalink
version 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Moran79 authored and cran-robot committed Aug 24, 2023
1 parent 248c0d3 commit 191c90b
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: LDATree
Title: Classification Trees with Linear Discriminant Analysis at
Terminal Nodes
Version: 0.1.0
Version: 0.1.1
Authors@R:
person("Siyu", "Wang", , "swang739@wisc.edu", role = c("cre", "aut", "cph"),
comment = c(ORCID = "0009-0005-2098-7089"))
Expand All @@ -20,8 +20,8 @@ Suggests: knitr, rmarkdown, testthat (>= 3.0.0)
Config/testthat/edition: 3
VignetteBuilder: knitr
NeedsCompilation: no
Packaged: 2023-08-21 17:37:52 UTC; moran
Packaged: 2023-08-23 20:22:41 UTC; moran
Author: Siyu Wang [cre, aut, cph] (<https://orcid.org/0009-0005-2098-7089>)
Maintainer: Siyu Wang <swang739@wisc.edu>
Repository: CRAN
Date/Publication: 2023-08-22 16:00:11 UTC
Date/Publication: 2023-08-24 07:30:27 UTC
12 changes: 6 additions & 6 deletions MD5
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
a4d0b71c8a00f54581467b194e501002 *DESCRIPTION
1e16468f76f23fa034f9c577d339ab37 *DESCRIPTION
4f9f9fac601b5b85ad52e45441429d33 *LICENSE
9986071b232178468a6860348cf509e6 *NAMESPACE
ad3b416381069832d022e0ecac2624d3 *NEWS.md
0c21630a7e068cc8f961ccdbd1db64ee *R/LDATree-package.R
677956dc9c6e6d46ee571bd93fd4f033 *R/Treee.R
dc709a0cc7e70eaa8e090ec38a3c6a65 *R/Treee.R
3f124a9b2e186fe411e6c8a2b1584861 *R/ldaGSVD.R
59f28e5e7f0e306fc6dca53fa2729dea *R/new_SingleTreee.R
3ab87d5aea900a38f6506958ed960af0 *R/new_TreeeNode.R
60a738daee32166b396568330c61e321 *R/plot.R
3d8175046782179f3ec8ab7bafb28dd4 *R/plot.R
acb798d821a5e8e72216b482c0af14b3 *R/predict.R
90de8ad5f5b7845085f213be681d32cc *R/print.R
8e1f0ab10d8150e1f9fb068b4a1ef1f5 *R/prune.R
0a5ade9e077017a08515d5500ed1586f *R/utils.R
2f10233c5037345197ce2226542574e0 *README.md
1e6567e25770f7f5e6ed0643430247ee *README.md
91dbf4ab6888c4b097250cef2ef0e9ff *build/vignette.rds
9111716660cde1f78110943529bf0565 *inst/doc/LDATree.R
1f79a4153300f664b8b4b3e1b62a7033 *inst/doc/LDATree.Rmd
683bc35be509d2a2ca9ffd138e1d97bf *inst/doc/LDATree.html
4d833fa40a0a56779f924dabfe6f3044 *man/LDATree-package.Rd
b42b92fc8f53693ab4d3032e38d569c7 *man/Treee.Rd
4a42960ab28c1f3bef81583551c55ba2 *man/Treee.Rd
d6cc708203c8446e7da29d2129112d46 *man/figures/README-plot1-1.png
fc4332a13c5196b27c611aaf7431a63f *man/figures/README-plot2-1.png
7b828a7df27caba1fae417de5d72ee4c *man/figures/README-plot2-2.png
Expand All @@ -33,7 +33,7 @@ ed42e3fbd7cc30bc6ca8fa9b658e24a8 *man/figures/lifecycle-stable.svg
bf2f1ad432ecccee3400afe533404113 *man/figures/lifecycle-superseded.svg
141f0f25ccdd2bf023028e7a8f047c06 *man/figures/logo.png
79fb96018b296f1b7d6036a1d286c6ed *man/ldaGSVD.Rd
7931f1665a788bb04f1bcbf8880cffbc *man/plot.Treee.Rd
8160297ae3f7c5ea5689e94ebe4e9cf7 *man/plot.Treee.Rd
ff64f003e1f312fb98e589474001dbe3 *man/predict.Treee.Rd
43a7648cad3a247b81296eb78797f917 *man/predict.ldaGSVD.Rd
98b4c88af8fa4c5831a7c70384b223bb *tests/testthat.R
Expand Down
2 changes: 1 addition & 1 deletion R/Treee.R
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
#' # plot the overall tree
#' plot(fit)
#' # plot a certain node
#' plot(fit, iris, node = 7)
#' plot(fit, iris, node = 1)
Treee <- function(formula,
data,
missingMethod = c("meanFlag", "newLevel"),
Expand Down
2 changes: 1 addition & 1 deletion R/plot.R
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
#' # plot the overall tree
#' plot(fit)
#' # plot a certain node
#' plot(fit, iris, node = 7)
#' plot(fit, iris, node = 1)
plot.Treee <- function(x, data, node = -1, ...){
treeeOutput <- x
if(node>0){
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ plot(fit, data = iris, node = 5)
To make predictions:

``` r
# Prediction only
# Prediction only.
predictions <- predict(fit, iris)
head(predictions)
#> [1] "setosa" "setosa" "setosa" "setosa" "setosa" "setosa"
Expand Down
2 changes: 1 addition & 1 deletion man/Treee.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/plot.Treee.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 191c90b

Please sign in to comment.