tidy.step_clean_levels {textrecipes} | R Documentation |
Tidy the Result of a Recipe
Description
tidy
will return a data frame that contains information regarding a recipe
or operation within the recipe (when a tidy
method for the operation
exists). See recipes::tidy.recipe for more information.
Usage
## S3 method for class 'step_clean_levels'
tidy(x, ...)
## S3 method for class 'step_clean_names'
tidy(x, ...)
## S3 method for class 'step_dummy_hash'
tidy(x, ...)
## S3 method for class 'step_lda'
tidy(x, ...)
## S3 method for class 'step_lemma'
tidy(x, ...)
## S3 method for class 'step_ngram'
tidy(x, ...)
## S3 method for class 'step_pos_filter'
tidy(x, ...)
## S3 method for class 'step_sequence_onehot'
tidy(x, ...)
## S3 method for class 'step_stem'
tidy(x, ...)
## S3 method for class 'step_stopwords'
tidy(x, ...)
## S3 method for class 'step_text_normalization'
tidy(x, ...)
## S3 method for class 'step_textfeature'
tidy(x, ...)
## S3 method for class 'step_texthash'
tidy(x, ...)
## S3 method for class 'step_tf'
tidy(x, ...)
## S3 method for class 'step_tfidf'
tidy(x, ...)
## S3 method for class 'step_tokenfilter'
tidy(x, ...)
## S3 method for class 'step_tokenize'
tidy(x, ...)
## S3 method for class 'step_tokenize_bpe'
tidy(x, ...)
## S3 method for class 'step_tokenize_sentencepiece'
tidy(x, ...)
## S3 method for class 'step_tokenize_wordpiece'
tidy(x, ...)
## S3 method for class 'step_tokenmerge'
tidy(x, ...)
## S3 method for class 'step_untokenize'
tidy(x, ...)
## S3 method for class 'step_word_embeddings'
tidy(x, ...)
Arguments
x |
A |
... |
Not currently used. |
[Package textrecipes version 1.0.6 Index]