Questions tagged [dotnet-interactive]

.NET Interactive is an engine that can run multiple languages and share variables between them.

As a powerful and versatile engine, .NET Interactive can be used to create and power a number of tools and experiences such as:

  • Polyglot Notebooks
  • s
  • Embeddable script engines

See also

18 questions
0
votes
0 answers

Trouble hooking Polyglot Notebook up to MySQL in C# with a magic connection

I am migrating some existing Python Jupyter Notebooks to C# Polyglot Notebooks. A MySQL connection is a mission-critical component of the notebooks, and I am new to Polyglot Notebooks. I've been able to successfully get Polyglot running in VSC and…
0
votes
2 answers

What is the equivalent to pandas dataframe info() in Deedle?

Python's pandas library allows getting info() on a data frame. For example. RangeIndex: 30 entries, 0 to 29 Data columns (total 9 columns): # Column Non-Null Count Dtype --- ------ …
Alkasai
  • 3,757
  • 1
  • 19
  • 25
0
votes
1 answer

vscode interactive notebooks nuget directory error

I was trying to include a nuget package in my C# cell, like the example below: #r "nuget: PackageIWantToInclude" when suddenly, I got a similar error like this: Error: PackageManagement Error 3217 The source directory 'D:\MyLocalDirectory' not…
1
2