Nothing
arrange_data <- function(data, time_line = c("Block", "Trial")){
# 基于time_line这个向量, 录入排序向量
order_vector <- lapply(time_line, function(col) data[[col]])
# 基于排序向量对输入数据集进行排序
data <- data[do.call(order, order_vector), ]
return(data)
}
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.