Improve .NET Interactive notebook / Jupyter support
See original GitHub issueScottPlot Version: Latest NuGet, 4.1.40
Operating System: Windows 10
Application Type: .NET Interactive Notebook
Question: How to display a plot in the interactive notebook?
In python’s matplotlib you basically go:
fig.scatter(/*put data here*/9
And the return of that displays as a plot.
I basically just copied an example from your page
// Install library from nuget
#r "nuget:ScottPlot"
// Get data
double[] dataX = new double[] { 1, 2, 3, 4, 5 };
double[] dataY = new double[] { 1, 4, 9, 16, 25 };
// make plot
var plt = new ScottPlot.Plot(400, 300);
// Output of this is just shown as a table
plt.AddScatter(dataX, dataY)
This is the output:
Issue Analytics
- State:
- Created a year ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
NET Interactive
NET Interactive is a fully supported Jupyter kernel that you can use with Jupyter Notebook, JupyterLab, nteract, and other Jupyter frontends. You can...
Read more >NET Interactive Notebooks is now Polyglot Notebooks!
The .NET Interactive Notebooks extension in Visual Studio Code has been renamed to Polyglot Notebooks! A little bit of history.
Read more >Using .NET Core in Jupyter Notebook | Devportal
This article explains steps to setup Jupyter Notebook for .NET Core programming languages on Windows 10.
Read more >Empowering Power Platform developers with .Net ...
Early 2022, I have read some content regarding Jupyter Notebooks and started to think it could be a great tool to help Power...
Read more >Polyglot Notebooks
The Polyglot Notebooks extension, powered by .NET Interactive, brings support for multi-language notebooks to Visual Studio Code. Classic notebook software ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’ll prioritize this and get it published in the next release 👍
@swharden Could we add this feature for scottplot 5.x ?