Results 63 issues of Aleksey Khudyakov

It's not the worst example but it's bad enough: ![badlog](https://user-images.githubusercontent.com/100394/71765553-68ef2100-2f07-11ea-8c61-40e3b393cd47.png) Counting nines is not pleasant and if we go above/below 10^±15 labels could easily eat half of the plot. And...

Otherwise it's possible that horizontal/vertical line coincides with axis and becomes invisible. Example: ``` toRenderable $ layout_plots .~ [toPlot $ plot_lines_values .~ [[(0,1),(0,0),(1,0),(3,3)]] $ def] $ def ``` ![download](https://cloud.githubusercontent.com/assets/100394/15505339/2783e474-21d4-11e6-920f-bc73d3496e0c.png)

If input for plot contains ∞ or NaNs library draws somewhat strange plots. It looks like path is reset and then drawing starts from origin. I'm not sure what is...

On some computers jsaddle-webkit2gtk based applications fail to render anything and just show blank screen (see hello world example below). It clearly depends on PC configuration since it's 100% reproducible...

Previous dicussion is in #30 pul request Everything does work. Although encoding os space delimited data is a bit fragile and depends on fact that space is always escaped There...

Encoding and decoding for all APIs together with tests and documentations. Previously dicussed at #14 Benchmarks don't indicate any performance regression for CSV.

In numeric fields it could lead to silent truncation: ``` >>> import Data.Csv >>> import Data.Vector (Vector) >>> decode NoHeader "12.7" :: Either String (Vector (Only Int)) Right (fromList [Only...

In #14 I have raised [point](https://github.com/DataHaskell/dh-core/issues/14#issuecomment-434371656) that we need set of type classes for properties of numbers and for approximate comparison. So what I think we need is type class...

enhancement
help wanted
R&D: library

It's way for emulating not quite quad-precision number using two doubles. Algorithms is interesting by itself and could have few uses. But I think its main value is providing example...

help wanted
R&D: library

Not all common data types have `AskInliterate` instances. Non-exhaustive list - `()` - 'Integer` - `Maybe a` - `[a]` This makes it impossible to run cells returning these types without...