#create a two-row example dataframe of functional traits
func.dframe=data.frame(flagella=1,size=c("large","small"),colonial=0,filament=0,centric=NA,
gelatinous=0,aerotopes=0,class="Euglenophyceae",order="Euglenales",
stringsAsFactors=FALSE)
#check the dataframe
print(func.dframe)
#run the function to produce a two-element character vector
func.dframe$MFG<-traits_to_mfg_df(func.dframe,c("flagella","size","colonial",
"filament","centric","gelatinous",
"aerotopes","class","order"))
print(func.dframe)
Run the code above in your browser using DataLab