ManagedCode.TimeSeries 0.0.18

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package ManagedCode.TimeSeries --version 0.0.18
NuGet\Install-Package ManagedCode.TimeSeries -Version 0.0.18
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="ManagedCode.TimeSeries" Version="0.0.18" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ManagedCode.TimeSeries --version 0.0.18
#r "nuget: ManagedCode.TimeSeries, 0.0.18"
#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.
// Install ManagedCode.TimeSeries as a Cake Addin
#addin nuget:?package=ManagedCode.TimeSeries&version=0.0.18

// Install ManagedCode.TimeSeries as a Cake Tool
#tool nuget:?package=ManagedCode.TimeSeries&version=0.0.18

img|300x200

TimeSeries

.NET Coverage Status nuget CodeQL

Version Package Description
NuGet Package ManagedCode.TimeSeries Core

Motivation

Time series data is a common type of data in many applications, such as finance, physics, and engineering. It is often necessary to store and manipulate large amounts of time series data efficiently in order to perform analysis and make predictions.

Our C# library, TimeSeries, provides convenient tools for working with time series data in C#. It includes classes for accumulating and summarizing data in time frames, as well as storing and compressing the data efficiently. This makes it easy to add and manage time series data in your C# projects.

Features

  • Accumulators for adding data to time frames.
  • Summers for summarizing data in time frames.
  • Efficient storage and compression of time series data.

Example

Here's an example of how you might use the TimeSeries library to accumulate and summarize data in a time frame:

using ManagedCode.TimeSeries;

var series = new IntTimeSeriesAccumulator(TimeSpan.FromSeconds(5)); // step
for (int i = 0; i < count; i++)
{
    series.AddNewData(i);
}
using ManagedCode.TimeSeries;

var series = new IntTimeSeriesAccumulator(TimeSpan.FromSeconds(0.1));
for (var i = 0; i < 1000; i++)
{
    await Task.Delay(new Random().Next(1, 5));
    series.AddNewData(i);
}

series.DataCount; // 1000

Installation

To install the TimeSeries library, you can use NuGet:

dotnet add package ManagedCode.TimeSeries

Conclusion In summary, the TimeSeries library provides convenient tools for working with time series data in C#. Its accumulators and summers make it easy to add and summarize data in time frames, and its efficient storage and compression capabilities ensure.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net7.0

    • No dependencies.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on ManagedCode.TimeSeries:

Package Downloads
ManagedCode.Keda.Orleans.Scaler.Client The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Keda

ManagedCode.Keda.Orleans.Scaler The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Keda

ManagedCode.TimeSeries.Orleans The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

TimeSeries

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.18 490 5/17/2023
0.0.17 8,224 12/9/2022
0.0.16 281 12/9/2022
0.0.15 274 12/9/2022
0.0.12 1,731 10/11/2022
0.0.11 365 10/11/2022
0.0.10 616 10/10/2022
0.0.9 1,028 10/10/2022
0.0.8 591 10/10/2022
0.0.7 590 10/10/2022
0.0.6 1,076 10/10/2022
0.0.5 623 10/10/2022
0.0.4 1,614 10/3/2022
0.0.3 2,573 9/23/2022
0.0.2 2,474 9/19/2022
0.0.1 424 9/19/2022