We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, if you want to set advanced parameters of one section, you have to do something like this.
A report with default visualizations is really simple to create:
edvart.DefaultReport()
An almost default report with setting just one parameter of one section is much more complex:
( edvart.Report() .add_overview() .add_univariate_analysis() .add_bivariate_analysis( columns_pairs=[('col1', 'col2'), ('col3', 'col4')] ) .add_multivariate_analysis() )
A possible solution would be supporting something like:
( edvart.DefaultReport() .set_bivariate_analysis( columns_pairs=[('col1', 'col2'), ('col3', 'col4')] ) )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, if you want to set advanced parameters of one section, you have to do something like this.
A report with default visualizations is really simple to create:
An almost default report with setting just one parameter of one section is much more complex:
A possible solution would be supporting something like:
The text was updated successfully, but these errors were encountered: