Skip to content

Feature request: Add data export option for Flexibility Index time plot #123

@rosamaryo

Description

@rosamaryo

Currently, the output options of Flexibility index are: time plot, common plot, summary table (1 row per org attribute) or full data. What I think is missing and would be really helpful is output of the data used in the time trend chart (1 row per week with the average FI) to be able to recreate that chart in ppt and keep adding weeks of data - customer will do this to track this on a monthly basis as a KPI.

Describe the solution you'd like

return = "table_time"

Describe alternatives you've considered
The solution now is to just save the full data (return = "data"), and do a simple summary:

group_by(Date) %>%
summarise(FlexibilityIndex = mean(FlexibilityIndex)) %>%

which maybe is the right approach if we don't want to start creating very specific data outputs. If that's the case, I suggest to just save this approach as an FAQ. Thank you!

Metadata

Metadata

Assignees

Labels

documentationImprovements or additions to documentation

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions