Olav Stetter

Results 31 comments of Olav Stetter

Just wrote a Ruby script to do this using [pandoc](https://pandoc.org/epub.html), see below. Let me know if you'd like to have this as a PR in some way. ```ruby # Define...

@DanielRosenwasser Could you clarify what kind of PRs you'd welcome on this issue? I suppose for example one could rewrite the Ruby script as Typescript, and then perhaps move this...

Actual fix would likely be to use [the curses module](https://docs.python.org/3/howto/curses.html).

Another (partial) fix would be enforcing a hard limit on the number of characters per line, see discussion #10

@Freed-Wu Thanks for the suggestion! I guess what you would want is that when plotting NaN's are silently dropped, right? So `plot([1,2,3])` should be itentical to `plot([1,2,3,np.nan])`, right?

Okay got it, I'll look into it. Might be that I'll only get around to the simpler option of the above. Let me know if you want to have a...

@Freed-Wu It sounds like you have another solution now. In any case I've implemented the simple version we discussed in `0.6.0` and maybe I'll get around to the more sophisticated...

This should now work as requested. 😄 ``` >>> import numpy as np >>> from uniplot import plot >>> a = np.arange(10.) >>> a[2:5] = [np.nan] * 3 >>> plot(a,...

Hi @gourisariah that's a good point, indeed plotting data with time stamps and/or categorical data would be great. I suppose a simple workaround for now would be to ask the...