【发布时间】:2021-06-26 17:27:54
【问题描述】:
我想询问从给定数据集中提取数据的问题(我猜它类似于数据分解)。 目标是分解数据集以提取特征?
例如:在不知道individual features(长度、宽度、高度)的情况下提取rectangle prism 的volume 的各个组件。
请推荐最佳实践来执行该操作。另外,有什么书或文章可以详细解释这个过程吗?
更新
分析示例代码:
using DataFrames
mutable struct rect
length
breadth
height
end
r = rect(rand(Int, 40), rand(Int, 40), rand(Int, 40))
volume(rect) = rect.length .* rect.breadth .* rect.height
volume_val = volume(r)
df = DataFrame(:length => r.length, :width=> r.width, :height=> r.height, :volume => volume_val)
# For this df dataframe, I would like to extract length, width and height from volume without the use of volume equation
提前致谢!
【问题讨论】:
标签: julia feature-extraction feature-engineering