Fix major bugs related to Pareto table and make new additions to pareto graphs #3

Merged
Snootic merged 5 commits from beta into main 2023-11-18 00:19:40 -03:00
Snootic commented 2023-11-18 00:17:13 -03:00 (Migrated from github.com)

fix 1: app won't close when already saved.

App wouldn't close if the tables where already saved because there was no calling to close function.

fix 2 and 4: app sortes not-null cost tables by total cost, calculation of freq when sort by cost.

These 2 are related. First, app where sorting tables with not-null cost by occurrence counts, which should be only for cost null tables. Second, cost sorting must be done before calculating relative and cumulative frequencies in order to get the right data.

fix 3: removes total cost from graphics dataframe.

This had a problem with graph which would create a "Total" bar which shouldn't exist. So I set the sum of Total Cost Null to avoid this problem.

graph update

  • Distinguish cost null tables and not null cost tables.

  • Added annotations to bars (% of relative freq. for cost null tables, $ of Total cost per item on not null cost tables)

### **fix 1: app won't close when already saved.** App wouldn't close if the tables where already saved because there was no calling to close function. ### **fix 2 and 4: app sortes not-null cost tables by total cost, calculation of freq when sort by cost.** These 2 are related. First, app where sorting tables with not-null cost by occurrence counts, which should be only for cost null tables. Second, cost sorting must be done before calculating relative and cumulative frequencies in order to get the right data. ### **fix 3: removes total cost from graphics dataframe.** This had a problem with graph which would create a "Total" bar which shouldn't exist. So I set the sum of Total Cost Null to avoid this problem. ### **graph update** - Distinguish cost null tables and not null cost tables. - Added annotations to bars (% of relative freq. for cost null tables, $ of Total cost per item on not null cost tables)
Sign in to join this conversation.
No description provided.