Cortex 1.0.0
See the version list below for details.
dotnet add package Cortex --version 1.0.0
NuGet\Install-Package Cortex -Version 1.0.0
<PackageReference Include="Cortex" Version="1.0.0" />
<PackageVersion Include="Cortex" Version="1.0.0" />
<PackageReference Include="Cortex" />
paket add Cortex --version 1.0.0
#r "nuget: Cortex, 1.0.0"
#:package Cortex@1.0.0
#addin nuget:?package=Cortex&version=1.0.0
#tool nuget:?package=Cortex&version=1.0.0
Cortex
A high-performance, pandas-like DataFrame library for .NET backed by Apache Arrow with SIMD acceleration.
Features
- Arrow-backed columnar storage for cache-friendly, zero-copy data access
- SIMD-accelerated operations for blazing-fast numeric computation
- Rich I/O — CSV, Parquet, Excel, JSON, and HTML out of the box
- Expressive API — filtering, grouping, joining, pivoting, and reshaping
- Native C accelerators for quantile and aggregation hot paths
Installation
dotnet add package Cortex
Quick Start
using Cortex;
var df = DataFrame.ReadCsv("sales.csv");
var summary = df.GroupBy("region")
.Agg(x => x.Sum("revenue"), x => x.Mean("quantity"))
.SortBy("revenue", ascending: false);
summary.Head(10).Print();
Links
| Product | Versions 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. |
-
net10.0
- AngleSharp (>= 1.4.0)
- Apache.Arrow (>= 18.1.0)
- ClosedXML (>= 0.105.0)
- Parquet.Net (>= 5.5.0)
NuGet packages (16)
Showing the top 5 NuGet packages that depend on Cortex:
| Package | Downloads |
|---|---|
|
Cortex.ML
Machine learning toolkit for Cortex: tensors, feature engineering, pipelines, evaluation |
|
|
Cortex.Streaming
Real-time micro-batch streaming engine for Cortex DataFrames |
|
|
Cortex.Flight
Arrow Flight RPC for distributed DataFrame transport and Flight SQL |
|
|
Cortex.Vision
Image and video processing for Cortex: transforms, augmentation pipelines, data loaders, and model integration |
|
|
Cortex.Text
NLP pipeline for Cortex: tokenizers, text preprocessing, embeddings, text analytics |
GitHub repositories
This package is not used by any popular GitHub repositories.