list.bind <- function(list, df, colname)
{
print("Converting List To Dataframe")
listframe <- data.frame(sapply(list, rbind)) #list to df
colnames(listframe)[1] <- colname #give new df's 1st col a name
df <- cbind(df,listframe) #bind the old df to the new df
print("Finished")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.