Nothing
insertRow <-
function(dataframe, newrow, index){
if(!(index == nrow(dataframe)+1)){
dataframe[seq(index+1,(nrow(dataframe)+1)),] <- dataframe[seq(index,nrow(dataframe)),]
}
dataframe[index,] <- newrow
return(dataframe)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.