nu_plugin_plot icon indicating copy to clipboard operation
nu_plugin_plot copied to clipboard

Plot numeric lists in Nushell as part of a pipeline

Results 14 nu_plugin_plot issues
Sort by recently updated
recently updated
newest added

- Update nu-plugin and nu-protocol dependencies to version 0.104.0

Hello, [I followed the install instruction](https://github.com/Euphrasiologist/nu_plugin_plot?tab=readme-ov-file#install) but I get this error. ``` plugin add ./target/release/nu_plugin_plot.exe Error: nu::shell::io_error × I/O error help: The communication channel is about to be closed. (os...

Not sure if this is desired - feel free to ignore if not.

https://github.com/loony-bean/textplots-rs/pull/53 New feature for y axis ticks might be nice here.

How to plot the number of y axis since zero base? Can provide more option? For example [ (seq 20 0.1 30) (seq 21 0.1 31) ] |plot Wish the...

I just found this and is so cool! I have my own plotting tool using gnuplot, but this is so much cooler ;) It would be really great that you...

As `nu_plugin` is communicating over the stdout, the `terminal_size` crate doesn't work in its current implementation. It's ideal to use this crate as it's actively supported, and what the rest...

I've [implemented](https://github.com/emilyseville7cf-scripts/batch-chart-util) simple horizontal chart drawer with coloring support in CMD 2 years ago. Here is how it's syntax looks like: ```cmd chart 1 { --item-foreground red } 5 {...

This plugin will become immensely more useful to me if it supports plotting streaming data. For example by: ``` (1..10) | each { sleep 1sec; ps | where name ==...