We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
I'm trying to draw scatter plot of the following dataframe but it misses some points.
df = Daru::DataFrame.new({ x: [3, 3, 3], y: [1, 2, 3] }, index: [0, 2, 3]) Plot.new [df, pt: 6, ps: 1, using: '2:3']
Although if I do not specify any index then it works pretty well.