- Download Anaconda to install Python and Jupyter
- Open Anaconda Prompt
- Open Jupyter Notebook
jupyter notebook
dotnet tool install -g dotnet-try
In Anaconda Prompt:
dotnet-try jupyter install
- Open Anaconda Prompt
- Switch to target directory
jupyter notebook
#r "nuget:XPlot.Plotly,3.0.1"
using XPlot.Plotly;
## Generate Numbers
%%time
var numbers = Enumerable.Range(0, 1000);
display(numbers);
var chart = Chart.Plot(
new Graph.Scatter()
{
x = numbers
}
);
display(chart);