gpt4 book ai didi

Azure ML Studio - 添加新列

转载 作者:行者123 更新时间:2023-11-30 09:20:01 26 4
gpt4 key购买 nike

您知道 Azure 机器学习工作室中的哪个模块允许添加新列吗?我的意思不是来自不同数据集的“复制粘贴”列,而是基于给定逻辑的新列,例如IF 语句?我想一种方法就是执行自定义 R/Python 脚本,但是有没有专用的模块?

最佳答案

您可以使用 Panda 的 DataFrame 操作来使用模块执行 Python 脚本:

import pandas as pd

# The entry point function can contain up to two input arguments:
# Param<dataframe1>: a pandas.DataFrame
# Param<dataframe2>: a pandas.DataFrame
def azureml_main(dataframe1 = None, dataframe2 = None):

# Execution logic goes here
print('Input pandas.DataFrame #1:\r\n\r\n{0}'.format(dataframe1))


dataframe1['new_column'] = dataframe1.apply(lambda row: extractValue(row), axis=1)

# Return value must be of a sequence of pandas.DataFrame
return dataframe1,


def extractValue(row):
return 1 if row['column1'] == 'something else 2

您还可以使用执行 Python 脚本创建包含新列的新数据集,并使用添加列模块来合并它们。

关于Azure ML Studio - 添加新列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43202780/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com