Skip to content

Commit bf8b062

Browse files
committed
update documentation
- added cross-reference ppred_model, ppred_examples_df - added documentation - rbuildignore doesn't ignore vignette build and subsequently __pycache__ files
1 parent 0fbe7d8 commit bf8b062

9 files changed

+39
-3
lines changed

.Rbuildignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
^.*\.Rproj$
22
^\.Rproj\.user$
3+
^\__pycache__$
4+
^process-prediction-workflow\.Rmd$

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
.RData
44
.Ruserdata
55
inst/doc
6+
**__pycache__/
7+
*.py

R/ppred_examples_df.R

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#' @title ppred_examples_df object
2+
#' @name ppred_examples_df
3+
#' @docType class
4+
#' @description object of type [`ppred_examples_df`] is a transformed event log returned by `prepare_examples_dt()`.
5+
#'
6+
NULL

R/ppred_model.R

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#' @title ppred_model object
2+
#' @name ppred_model
3+
#' @docType class
4+
#' @description object of type [`ppred_model`] is a list returned by processpredictR::create_model() containing a custom keras functional (transformer) model and some other useful metrics of an event log.
5+
#'
6+
NULL

R/ppred_predictions.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#' @title ppred_predictions object
2-
#' @name predictions
2+
#' @name ppred_predictions
33
#' @docType class
44
#' @description object of type [`ppred_predictions`] is a data.frame with predicted values returned by predict.ppred_model().
55
#'

man/ppred_examples_df.Rd

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/ppred_model.Rd

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/predictions.Rd man/ppred_predictions.Rd

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vignettes/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
*.html
22
*.R
3+
**__pycache__/
4+
*.py

0 commit comments

Comments
 (0)