我正在尝试创建一个函数,该函数使用R返回数据框中给定列的唯一值,但是我不明白为什么每次尝试都为NULL。这是我的代码:
Val_Uniques <- function(column_name, df){
# we first get the dataframe columns names
column_names = colnames(df)
if(column_name %in% column_names){
result = unique(df$column_name)
return(result)
}else{
print("Could not find this column ! ")
}
}