.get_fingerprint | R Documentation |
This function returns a hash (or NA) for an attribute that is created when
the rset
was initially constructed. This can be used to compare with other
resampling objects to see if they are the same.
.get_fingerprint(x, ...)
## Default S3 method:
.get_fingerprint(x, ...)
## S3 method for class 'rset'
.get_fingerprint(x, ...)
x |
An |
... |
Not currently used. |
A character value or NA_character_
if the object was created prior
to rsample
version 0.1.0.
set.seed(1)
.get_fingerprint(vfold_cv(mtcars))
set.seed(1)
.get_fingerprint(vfold_cv(mtcars))
set.seed(2)
.get_fingerprint(vfold_cv(mtcars))
set.seed(1)
.get_fingerprint(vfold_cv(mtcars, repeats = 2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.