Skip to content

Commit

Permalink
change the deprecated as_data_frame into as_tibble
Browse files Browse the repository at this point in the history
  • Loading branch information
gederajeg committed Feb 28, 2019
1 parent 340eeec commit a73af10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panas_paper.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Tampak bahwa, misalnya, pemakaian literal bentuk pasif *dipanasi* (`r nrow(panas

```{r prop-table}
panas_prop <- prop.table(panas_xtab, 2)
panas_prop_df <- dplyr::as_data_frame(panas_prop)
panas_prop_df <- tibble::as_tibble(panas_prop)
knitr::kable(round(panas_prop, 2), caption = 'Kekerapan relatif/proporsi antara kategori <span style="font-variant:small-caps;">makna</span> dan <span style="font-variant:small-caps;">bentuk morfosintaksis</span>')
```

Expand Down

0 comments on commit a73af10

Please sign in to comment.