A diagram that exhibits a relationship, between two sets of numbers as a set of points having coordinates determined by the relationship.
Questions tagged [graphing]
680 questions
-2
votes
3 answers
A more accurate way to specific a Point/Location on a Windows Form?
I am attempting to move a picture box around a circle at the center of my form. I am having an issue accurately depicting where the picture box should appear due to rounding issues. A subset of my data may reflect the…

George Johnston
- 31,652
- 27
- 127
- 172
-2
votes
1 answer
How to create a horizontal bar graph graphing number ranges?
Does anyone know how to go about creating a horizontal bar graph that graphs number ranges? By which I mean the graphed values do not start at 0 on the x axis 0 and stop at another singular number but instead the values have a start and end values…

Alan Jenkins
- 3
- 3
-2
votes
1 answer
Python - Read and plot data from a .csv
I have a .csv full of GDP data by year for different countries. I want read the file and plot the data of only a select few of the countries in the .csv file. So far I have:
data = np.genfromtxt('The_data.csv', dtype=str, delimiter=',',…

Joan334
- 1
- 3
-3
votes
1 answer
Python basic graphing of data using log vs log of the data
[enter image description here](https://i.stack.imgur.com/Kjjer.png)
Trying to graph this data scaled by log but something is going wrong, it should look more exponential. Any ideas?
Thank you!!
I'm obviously new so I'm not sure what to do.I've tried…
-3
votes
1 answer
Algorithm or Function to return Y values for X and Equation Inputs
I am creating a graphing calculator and I need an algorithm to interpret equations that users input. For example, if the user types in "x^3+5x^2-4x-9", the algorithm should take the string input and return (0, -9), (1, -7) and so on. How should I go…

darkterbears
- 169
- 12