NReco.PivotData
1.3.1
Prefix Reserved
See the version list below for details.
dotnet add package NReco.PivotData --version 1.3.1
NuGet\Install-Package NReco.PivotData -Version 1.3.1
<PackageReference Include="NReco.PivotData" Version="1.3.1" />
paket add NReco.PivotData --version 1.3.1
#r "nuget: NReco.PivotData, 1.3.1"
// Install NReco.PivotData as a Cake Addin #addin nuget:?package=NReco.PivotData&version=1.3.1 // Install NReco.PivotData as a Cake Tool #tool nuget:?package=NReco.PivotData&version=1.3.1
PivotData: in-memory .NET OLAP cube (multidimensional dataset) for analytical queries and pivot tables calculation.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.5 is compatible. netstandard1.6 was computed. netstandard2.0 was computed. netstandard2.1 was computed. |
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.0
- No dependencies.
-
.NETStandard 1.5
- NETStandard.Library (>= 1.6.0)
- System.Data.Common (>= 4.1.0)
- System.Reflection (>= 4.1.0)
- System.Reflection.Primitives (>= 4.0.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on NReco.PivotData:
Package | Downloads |
---|---|
NReco.PivotData.Extensions
PivotData Toolkit components: render pivot tables to HTML, exports to JSON/CSV/Excel/PDF/DataTable, pivot table calculations (percentages, differences, running total, heatmap, top-N/pagination/groups expand-collapse), load data from SQL databases, infrastructure for interactive web-based reports builder. Note: without a valid license key, PivotData Toolkit components operate in TRIAL MODE (with some limitations / trial notices). ASP.NET MVC pivot table builder online demo: http://pivottable.nrecosite.com/ Toolkit examples download: https://www.nrecosite.com/pivot_data_library_net.aspx |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.4.3 | 944 | 11/12/2024 |
1.4.2 | 48,697 | 2/2/2023 |
1.4.1 | 6,538 | 8/26/2022 |
1.4.0 | 3,004 | 7/13/2022 |
1.3.8 | 59,957 | 5/27/2020 |
1.3.7 | 326,773 | 7/18/2018 |
1.3.6 | 80,454 | 4/6/2018 |
1.3.5 | 2,505 | 2/26/2018 |
1.3.4 | 26,955 | 2/1/2017 |
1.3.3 | 39,239 | 10/18/2016 |
1.3.2 | 2,904 | 8/14/2016 |
1.3.1 | 2,964 | 7/5/2016 |
1.3.0 | 4,397 | 5/10/2016 |
1.2.6 | 3,215 | 2/4/2016 |
1.2.5 | 1,998 | 1/13/2016 |
1.2.4 | 2,002 | 12/11/2015 |
1.2.3 | 2,317 | 9/30/2015 |
v.1.3.1 Changes:
- Fixed issue with incorrect grand-total non-lazy calculation for PivotData cube with exactly one dimension
- Improved internal performance for PivotData lazy totals calculation (1.5x)
- Drastically increased performance for PivotTable row/column totals calculation (10x+)
- Added build for .NET Standards 1.5 (now PivotData can be used from .NET Core 1.0 apps)
v.1.3.0 Changes:
- bugfix: incorrect last column/row sorting with PivotTable.PreserveGroupOrder option.
- added ListAggregatorFactory (ListAggregator) for accumulating all values from an input source (works like LINQ GroupBy).
- added VarianceAggregatorFactory (VarianceAggregator) for calculating variance, standard deviation (stdev), sample variance and sample stadard deviation.
- added ObjectMember that simplifies processing of custom data models (typed collections).
- added PivotDataHelper that provides utility methods for any IPivotData object: GetDimensionKeys and GetDimensionType.
- improved ConvertHelper.ConvertToDecimal method (now it supports all primitive number types) and added ConvertHelper.ConvertToDouble method.
v.1.2.6 Changes:
- introduced IPivotTable interface for alternative implementations/wrappers.
- added PivotTable.GetValue(ValueKey row, ValueKey col) method for key-based access to pivot table values; this signature can be used for getting sub-total values.
- added PivotTable.SortColumnKeysByRowKey and PivotTable.SortRowKeysByColumnKey methods for key-based sorting (useful for ordering by sub-total values).
More details: http://www.nrecosite.com/pivot_data_library_net.aspx