PrincipalComponentInfo.fromJson constructor
PrincipalComponentInfo.fromJson(
- Map json_
Implementation
PrincipalComponentInfo.fromJson(core.Map json_)
: this(
cumulativeExplainedVarianceRatio:
(json_['cumulativeExplainedVarianceRatio'] as core.num?)
?.toDouble(),
explainedVariance:
(json_['explainedVariance'] as core.num?)?.toDouble(),
explainedVarianceRatio:
(json_['explainedVarianceRatio'] as core.num?)?.toDouble(),
principalComponentId: json_['principalComponentId'] as core.String?,
);