After spending some time looking at the documentation, searching the web, and experimenting at the prompt, I haven't succeeded at plotting points using Racket. Could someone post an example of how I'd go about plotting (0 1 2 3 4 5) for my x coordinates and (0 1 4 9 16 25) for the y coordinates. I think 1 good example will clear the problem up.
相关问题
- Plotting multiple columns with ggplot2 [duplicate]
- Generating powerset in one function, no explicit r
- What is fixed point?
- R markov chain package, is possible to set the coo
- Tick label text and frequency in matplotlib plot
相关文章
- How to plot smoother curves in R
- How to add clipboard support to Matplotlib figures
- Adding a legend to a matplotlib boxplot with multi
- Does learning one Lisp help in learning the other?
- What is “3D syntax”?
- R plot legend with transparent background
- What is the definition of “natural recursion”?
- How to plot a smooth 2D color plot for z = f(x, y)
Based on the first example of the doc, and given that the function you want to plot already exists in Racket, it's as simple as:
If you just want to see the individual points, this is also taken from the docs:
which is equivalent to