mirror of
https://github.com/shizand/statapp.git
synced 2025-04-02 23:53:44 +03:00
10 lines
183 B
Python
10 lines
183 B
Python
from typing import Any
|
|
|
|
import numpy as np
|
|
|
|
|
|
def variance_analysis(data):
|
|
return np.array([
|
|
[np.mean(col), np.std(col), np.min(col), np.max(col)] for col in data.T
|
|
])
|