Python Forum

Full Version: Plot Graph
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have 4 different value and I have 1 corresponding value for these 4 value

I mean,
When a, b, c, d = 0.1, 0.2, 0.3, 0.4 the corresponding G value is equal 0.5
When a, b, c, d = 0.1, 0.1, 0.4, 0.4 the corresponding G value is equal 0.2
When a, b, c, d = 0.4, 0.2, 0.3, 0.1 the corresponding G value is equal 0.7
When a, b, c, d = 1.0, 0.0, 0.0, 0.0 the corresponding G value is equal 0.4

And I want to show them in a nice graph but since I have 4 variable instead of 1, I do not know how to do?
Any suggestion
Do you have 4 values (a, b, c, d) or 1 (G)? What information is your graph supposed to convey? How many of each G value?

Is the G value calculated from a, b, c, d?
I have 4(a b c d) different variable and corresponding these 4 different variable I have 1 value
My mean is that G is the x axis but it depends on 4 different value (4 different y axis)
Even one of these 4 variable change, G will change