R中的数据重组

时间:2016-04-21 01:04:42

标签: r

我的数据集看起来像这样。 4个变量,包含5个事务格式的案例。

enter image description here

我想为Account字段创建变量,其中包含current_Bal值,如下所示。

enter image description here

我如何在R?

中实现这一目标

1 个答案:

答案 0 :(得分:1)

您可以这样做:

  File "py1", line 8
    numcopy = int(input("Number of result messages:\n"))
          ^
SyntaxError: invalid syntax

更新

我们也可以使用NoScript函数执行此操作:

get_val <- function(acc_type,check_type,val){
    return(ifelse(acc_type == check_type,val,NA))
}

df$Account_Draft_Current_Bal <- get_val(df$Account,'Draft',df$Current_Bal)

df$Account_Savings_Current_Bal <- get_val(df$Account,'Savings',df$Current_Bal)