• R/O
  • SSH

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisionb2e931a569e59021f3879d72e48f18945f2f7c16 (tree)
Zeit2024-01-12 06:26:12
AutorLorenzo Isella <lorenzo.isella@gmai...>
CommiterLorenzo Isella

Log Message

A simple function to turn a list of dataframes into a tibble.

Ändern Zusammenfassung

Diff

diff -r d19e932160cf -r b2e931a569e5 R-codes/stat_lib.R
--- a/R-codes/stat_lib.R Wed Jan 10 15:11:50 2024 +0100
+++ b/R-codes/stat_lib.R Thu Jan 11 22:26:12 2024 +0100
@@ -7408,3 +7408,12 @@
74087408
74097409 }
74107410
7411+
7412+##convert simple list to dataframe
7413+
7414+list_to_df <- function(mylist, myid=NULL){
7415+ res <- mylist |>
7416+ bind_rows(.id=myid)
7417+ return(res)
7418+
7419+}