-
Notifications
You must be signed in to change notification settings - Fork 165
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Row statistics option documentation #883
Merged
taylorfturner
merged 11 commits into
capitalone:feature/dev-gh-pages/options
from
drahc1R:row_statistics_option
Jun 20, 2023
Merged
Changes from 10 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
2a87f90
updated documentation on new row_statistic options
drahc1R 5906f0f
Merge branch 'feature/dev-gh-pages/options' into row_statistics_option
drahc1R 9070848
added documentation for row_statistics_options
drahc1R 78208fa
Merge branch 'row_statistics_option' of https://github.com/drahc1R/Da…
drahc1R fef9f57
fixed typing of hll and included the note that it activates when hll …
drahc1R 2f8e2ee
removed space
drahc1R a53dc38
Merge branch 'feature/dev-gh-pages/options' into row_statistics_option
JGSweets ca2e39d
fixed quotation mark
drahc1R 94962ea
added micdavis comments
drahc1R b133744
fixed doc descriptions for unique_count
drahc1R fc9d412
small changes to docs
drahc1R File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -806,12 +806,19 @@ Below is an breakdown of all the options. | |||||
* data_labeler_dirpath - (String) Directory path to data labeler | ||||||
* data_labeler_object - (BaseDataLabeler) Datalabeler to replace | ||||||
the default labeler | ||||||
* max_sample_size - (Int) The max number of samples for the data | ||||||
* max_sample_size - (Int) The max number of samples for the data | ||||||
labeler | ||||||
* **correlation** - option set for correlation profiling | ||||||
* is_enabled - (Boolean) Enables or disables performing correlation profiling | ||||||
* columns - Columns considered to calculate correlation | ||||||
* **row_statistics** - (Boolean) Option to enable/disable row statistics calculations | ||||||
* unique_count - (UniqueCountOptions) Option to enable/disable functionalities from UniqueCountOptions | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
* is_enabled - (Bool) Enables or disables options for unique row count | ||||||
* hashing_method - (String) Property to specify row hashing method ("full" | "hll") | ||||||
* hll - (HyperLogLogOptions) Options for alternative method of estimating unique row count (activated when `hll` is the selected hashing_method) | ||||||
* seed - (Int) Used to set HLL hashing function seed | ||||||
* register_count - (Int) Number of registers is equal to 2^register_count | ||||||
* null_count - (Boolean) Option to enable/disable functionalities for row_has_null_ratio and row_is_null_ratio | ||||||
* **chi2_homogeneity** - Options for the chi-squared test matrix | ||||||
|
||||||
* is_enabled - (Boolean) Enables or disables performing chi-squared tests for homogeneity between the categorical columns of the dataset. | ||||||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.