Skip to content
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

Improve ergonomics of setting advanced options for sections #7

Open
mbelak-dtml opened this issue Jul 24, 2023 · 0 comments
Open

Improve ergonomics of setting advanced options for sections #7

mbelak-dtml opened this issue Jul 24, 2023 · 0 comments
Labels
enhancement New feature or request

Comments

@mbelak-dtml
Copy link
Collaborator

mbelak-dtml commented Jul 24, 2023

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')]
  )
)
@mbelak-dtml mbelak-dtml added the enhancement New feature or request label Jul 24, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Development

No branches or pull requests

1 participant