Skip to content

Commit

Permalink
sort table by package name
Browse files Browse the repository at this point in the history
  • Loading branch information
HenrikBengtsson committed Mar 7, 2024
1 parent 7d83c4e commit b5f33ea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
12 changes: 6 additions & 6 deletions inst/known_cases.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{
"package": "base",
"type": "read-only url connection",
"if_not_marshalled": "",
"if_not_marshalled": "error, incorrect result",
"can_be_marshalled": true,
"must_be_marshalled": true
},
Expand All @@ -30,7 +30,7 @@
{
"package": "caret",
"type": "train",
"if_not_marshalled": "",
"if_not_marshalled": "???",
"can_be_marshalled": true,
"must_be_marshalled": true
},
Expand All @@ -44,7 +44,7 @@
{
"package": "data.table",
"type": "data.table",
"if_not_marshalled": "",
"if_not_marshalled": "okay",
"can_be_marshalled": true,
"must_be_marshalled": false
},
Expand Down Expand Up @@ -92,7 +92,7 @@
},
{
"package": "parsnip",
"if_not_marshalled": "",
"if_not_marshalled": "???",
"can_be_marshalled": true,
"must_be_marshalled": true
},
Expand Down Expand Up @@ -126,7 +126,7 @@
{
"package": "rstan",
"type": "stanfit",
"if_not_marshalled": "",
"if_not_marshalled": "okay",
"can_be_marshalled": true,
"must_be_marshalled": false
},
Expand All @@ -147,7 +147,7 @@
{
"package": "readr",
"type": "data.frame, tbl_df with 'problems' attribute",
"if_not_marshalled": "",
"if_not_marshalled": "???",
"can_be_marshalled": true,
"must_be_marshalled": false
},
Expand Down
1 change: 1 addition & 0 deletions vignettes/known_cases.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ names <- gsub("_marshalled", "_marshalled?", names)
names <- gsub("_", " ", names)
names <- gsub("_", " ", names)
colnames(support) <- names
support <- with(support, support[order(tolower(package)), ])
DT::datatable(support, options = list(pageLength = 50))
```

0 comments on commit b5f33ea

Please sign in to comment.