Questions tagged [pareto-chart]

diagram that superposes a bar chart of the frequencies of events/factors ordered by decreasing occurrences, and a curve of the cumulated frequencies.

The pareto-diagram is a diagram that superposes:

  • a bar chart of the frequencies of events/factors that partition a variable. The elements are ordered by decreasing occurrences
  • a curve of the cumulated proportion of the events/factors taken in the same order.

The intent is to visualize the pareto principles, which states that a few causes account for the most effects.

See also:

51 questions
1
vote
1 answer

I need help plotting different permutations of an if/else command in different colors on the same plot

Basically I have a code where it produces a plot of all possible permutations between Cost and Reliability. There's a total of 864 data points split up between 8 rows. Five of the rows have 2 options and three of them 3 options. Given here is a…
Scotch Jones
  • 25
  • 1
  • 6
1
vote
1 answer

How to count how much providers suppose the 80%

I am trying to calculate with DAX the number of suppliers suppose the 80% of my buys. I have a table with the name of the provider(NOMBRE PROVEEDOR), his category(código estadístico) and how much i have bought from each one of them(SUMA TODOS). Then…
Ion
  • 549
  • 1
  • 11
  • 25
1
vote
1 answer

best data structure to record a Pareto front

May I ask if someone has already seen or faced the following problem? I need to handle a list of cost/profit values c1/p1, c2/p2, c3/p3,... that satisfies: c1≤c2≤c3≤c4... p1≤p2≤p3≤p4... This is an example: 2/3, 4/5, 9/15, 12/19 If one tries to…
1
vote
1 answer

How do you create a calculated cumulative total value column in a power bi matrix visualization?

I am pretty new to Power BI, but I'm learning alot fast. I do have one challenge at this point that has me stumped and I'm really not finding anything online that relates very closely. I have created a basic matrix visualization that gives me sales…
1
vote
0 answers

Standardized pareto Chart in R

I have been looking for ways to plot a standardized Pareto chart in R but with no luck. Any help would be appreciated. An example of the chart is below: Pareto Chart of Standardized Effects
John
  • 387
  • 2
  • 3
  • 14
1
vote
2 answers

Display values in Pareto chart using Chart.js 2.0.2

I have a Pareto chart (using Chart.js Version: 2.0.2) and i need to display values inside of the bars and under the line. Any help will be very appreciated: This is the code (hope that it is useful for somebody):
prueba prueba
  • 652
  • 1
  • 8
  • 26
1
vote
1 answer

Plot pareto front solutions in java

I have 3 sets of pareto front solutions gathered from MOEA algorithms I am wondering if there is a java library that can help to draw 3 pareto in the same plot from 3 sets of data. I have a 2-objective problem. So I guess I need a 2D Plot. Can you…
staticx
  • 1,201
  • 2
  • 16
  • 31
0
votes
0 answers

Issues with Pareto Chart in PowerBI using DAX with duplicated values

I have a Demand table aggregated by Customer, Product and Time Periods. I'm trying to build a Pareto Minimum Demand Chart by Site with Product and Time Period filters. When applying a specific Product filter, I noticed that for Sites with the same…
0
votes
0 answers

Index to Scalar variable error when trying to plot pareto front

I am trying to plot the pareto front for an equation but i keep getting "Index to scalar variable error". this is what the code looks like import numpy as np import matplotlib.pyplot as plt from scipy.optimize import differential_evolution # Define…
0
votes
0 answers

fPortfolio error in portfolioFrontier plots

I need to insert the titles in each graph generated for efficient frontiers plotted in fPortfolio R package, but it seems doesn´t work! R…
0
votes
2 answers

How to manipulate cluster data point of Kmeans clustering algorithm

In Kmeans clustering we can define number of cluster. But is it possible to define that cluster_1 will contain 20% data, cluster_2 will have 30% and cluster_3 will have rest of the data points? I try to do it by python but couldn't.
0
votes
0 answers

How to create Highcharts pareto with drilldown

I want to create a pareto with drilldown. I'm able to create the drilldown, but the pareto line doesn't appear on the graph. Is there a demo of how to do this so that I can use that as an example? This in an example of the code that I wrote, the…
Manmm
  • 1
0
votes
0 answers

Draw Pareto Front Line in Python

I have my results from multi-objective optimization problem in excel file. I use seaborn to plot my data. However, I want to plot a Pareto Front Line. I am trying to plot my data similar to the figure this post (Is this plot a ParetoFront? and What…
0
votes
1 answer

Matplotlib Scaling Y Axis in Pareto Chart

I'm trying to show some data in a Pareto chart. My current chart looks like this: I would like to scale my left y axis growing exponentially as 10^0, 10^1, 10^2, etc. I would also like it to display the numbers "1", "10", "100", etc instead of in…
0
votes
2 answers

Why aren't all ticklabels shown on the x-axis?

This is my code. fig, ax1 = plt.subplots() fig.set_figheight(7) fig.set_figwidth(12) ax1.bar(df.index, df['occurence of defects'], color="C0") ax1.set_ylabel("Qty", color="C0") ax1.tick_params(axis="y",…