Deedle.DotNet.Interactive.Extension 0.1.0-alpha12

This is a prerelease version of Deedle.DotNet.Interactive.Extension.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Deedle.DotNet.Interactive.Extension --version 0.1.0-alpha12
                    
NuGet\Install-Package Deedle.DotNet.Interactive.Extension -Version 0.1.0-alpha12
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Deedle.DotNet.Interactive.Extension" Version="0.1.0-alpha12" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Deedle.DotNet.Interactive.Extension" Version="0.1.0-alpha12" />
                    
Directory.Packages.props
<PackageReference Include="Deedle.DotNet.Interactive.Extension" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Deedle.DotNet.Interactive.Extension --version 0.1.0-alpha12
                    
#r "nuget: Deedle.DotNet.Interactive.Extension, 0.1.0-alpha12"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Deedle.DotNet.Interactive.Extension@0.1.0-alpha12
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Deedle.DotNet.Interactive.Extension&version=0.1.0-alpha12&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Deedle.DotNet.Interactive.Extension&version=0.1.0-alpha12&prerelease
                    
Install as a Cake Tool

Deedle Formatting Extension for .NET Interactive

Deedle.DotNet.Interactive.Extension renders Deedle Frame and Series values as HTML tables in .NET Interactive notebooks.

Repository: https://github.com/ingted/Deedle.DotNet.Interactive.Extension

This package is built against the .NET 10 source projects in the companion ingted/interactive repository (local checkout: G:\coldfar_py\interactive).

Install

#r "nuget: Deedle.DotNet.Interactive.Extension, 0.1.0-alpha12"

open Deedle
open Deedle.DotNet.Interactive.Extension

Configure frame size

The limits are mutable process-wide settings. Once changed, later renders use the new values until they are changed again.

DeedleFormatterSettings.FrameRowLimit <- Some 100
DeedleFormatterSettings.FrameColumnLimit <- Some 30

Use None to render every row or column:

DeedleFormatterSettings.FrameRowLimit <- None
DeedleFormatterSettings.FrameColumnLimit <- None

Refresh a frame in place

printDFFun intervalMilli f calls f immediately to create the initial display. It then calls f at the requested interval and replaces the same cell output area with the newly rendered frame.

let dfTimer =
    printDFFun 1000 (fun () -> currentFrame)

Keep the returned System.Threading.Timer in a binding for as long as updates are needed. Dispose it to stop refreshing:

dfTimer.Dispose()

If one refresh is still running when the next interval arrives, the overlapping refresh is skipped. If f throws, the error is shown in the same output area and a later successful refresh can replace it.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Deedle.DotNet.Interactive.Extension:

Package Downloads
SymbolicNet6.Interactive.Extension

FSSTL Expression and FloatingPoint formatters for .NET Interactive notebooks, including Deedle Frame and TorchSharp Tensor delegation.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.0-alpha9 77 8/15/2026
0.1.0-alpha25 80 8/18/2026
0.1.0-alpha24 59 8/18/2026
0.1.0-alpha23 69 8/18/2026
0.1.0-alpha22 64 8/18/2026
0.1.0-alpha21 68 8/18/2026
0.1.0-alpha20 66 8/18/2026
0.1.0-alpha19 64 8/18/2026
0.1.0-alpha18 59 8/18/2026
0.1.0-alpha17 54 8/18/2026
0.1.0-alpha16 66 8/18/2026
0.1.0-alpha15 66 8/15/2026
0.1.0-alpha14 62 8/15/2026
0.1.0-alpha13 69 8/15/2026
0.1.0-alpha12 67 8/15/2026
0.1.0-alpha11 67 8/15/2026
0.1.0-alpha10 60 8/15/2026