plots icon indicating copy to clipboard operation
plots copied to clipboard

Haskell plotting library

Results 17 plots issues
Sort by recently updated
recently updated
newest added

I made a test to use the heatmap example in: ```haskell import Plots import Linear.V2 import Control.Lens main :: IO () main = do let xs = [[1,2,3],[4,5,6]] heatMap xs...

It would be nice if I could use `heatImage` without having the bounds for the `ColourMap` implicitly determined from the data. I am attempting to create a dynamic such image,...

![foo](https://user-images.githubusercontent.com/1550265/34081530-c670bf24-e345-11e7-809d-59381acbeebb.png)

Right now, an integer could appear as "12.0" instead of the more pleasing "12". To fix this, I use: `xAxis . tickLabelFunction .= atMajorTicks (reverse . (\(x:xs) -> if x...

If I add 1 more point to my data I get a very strange chart. ``` kSaxis :: [(Double, Double)] -> P.Axis B V2 Double kSaxis xs = P.r2Axis &~...

The scale seems to completely break the diagram with some fractions. Especially when trying to make a volcano plot, for instance, which has all values on the y-axis between 0...

It would be nice to have a custom log scale for an axis instead of the default `log` -- one might want to have any of the base 10, 2,...

Although subjective, I believe the default line shapes should be: ``` lineStyle . _lineCap .= LineCapSquare lineStyle . _lineJoin .= LineJoinBevel ``` Particularly LineJoinBevel. The default is very misleading. For...

In the line plot example: if I just add one point at the y-axis of 0 (mydata3 point 2), no data point goes below 0 yet the y-axis extends beyond...

Right now, it looks like we need to do something like (basically from https://github.com/cchalmers/plots/issues/25): ``` yAxis . axisLabelTextFunction %= \f _ s -> f (BoxAlignedText 0.5 0.5) s # rotateBy...