lantern 1.0.0
Compute basic statistics for an array of objects..
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
lantern
任意の構造体配列をテーブルとみなし、要約統計量を取得するためのライブラリです。
PythonにおけるPandasのDataFrameにある describe
のような機能を持ちます。
- Pandas DataFrame.describe
- https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.describe.html
Examples
Example (30 secs)
source
import std;
import lantern;
void main()
{
// make 10 records
auto dataset = iota(10).map!(n => Test(uniform01()));
auto result = describe(dataset);
// get stats
writeln(result.value.min);
writeln(result.value.max);
writeln(result.value.mean);
writeln(result.value.std);
writeln(result.value.p25);
writeln(result.value.p50);
writeln(result.value.p75);
writeln();
// print as table
printTable(result);
}
struct Test
{
double value;
}
output
0.079207
0.865132
0.391348
0.237936
0.235163
0.376355
0.53751
| | value |
|-------|----------|
| count | 10 |
| min | 0.079207 |
| max | 0.865132 |
| p25 | 0.235163 |
| p50 | 0.376355 |
| p75 | 0.53751 |
| mean | 0.391348 |
| std | 0.237936 |
基本機能
対応する型
数値や文字列、真偽値やenumに対応します。
変数の種類によって以下の統計量が取得できます。
- 数値変数 (int, float, double, Duration, ...)
- count, min, max, p25, p50, p75, mean, std
- 順序変数 (SysTime, DateTime, Date, TimeOfDay, ...)
- count, uniq, top, freq, first, last
- カテゴリ変数 (string, bool, enum)
- count, uniq, top, freq
- Registered by lempiji
- 1.0.0 released 4 years ago
- lempiji/lantern
- MIT
- Authors:
- Dependencies:
- east_asian_width, mir-algorithm
- Versions:
-
1.2.0 2022-Oct-09 1.1.0 2021-Jun-12 1.0.1 2020-Aug-23 1.0.0 2020-Feb-29 ~master 2022-Oct-09 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
0 downloads this month
-
23 downloads total
-
- Score:
- 0.3
- Short URL:
- lantern.dub.pm