mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2026-06-19 04:27:30 +02:00
examples updated
This commit is contained in:
parent
67e425d510
commit
c2fa49e914
3 changed files with 28 additions and 28 deletions
|
|
@ -31,5 +31,5 @@ data.frame
|
|||
Data summary for printing visual summary
|
||||
}
|
||||
\examples{
|
||||
mtcars |> data_summary_gather()
|
||||
mtcars |> data_summary_gather() |> names()
|
||||
}
|
||||
|
|
|
|||
|
|
@ -102,18 +102,18 @@ visual_summary_demo_app <- function() {
|
|||
}
|
||||
|
||||
visual_summary_demo_app()
|
||||
data_demo <- mtcars
|
||||
data_demo[2:4, "cyl"] <- NA
|
||||
rbind(data_demo, data_demo, data_demo, data_demo) |> missings_apex_plot()
|
||||
data_demo |> missings_apex_plot()
|
||||
mtcars |> missings_apex_plot(animation = TRUE)
|
||||
# data_demo <- mtcars
|
||||
# data_demo[2:4, "cyl"] <- NA
|
||||
# rbind(data_demo, data_demo, data_demo, data_demo) |> missings_apex_plot()
|
||||
# data_demo |> missings_apex_plot()
|
||||
# mtcars |> missings_apex_plot(animation = TRUE)
|
||||
# dplyr::storms |> missings_apex_plot()
|
||||
visdat::vis_dat(dplyr::storms)
|
||||
data_demo <- mtcars
|
||||
data_demo[sample(1:32, 10), "cyl"] <- NA
|
||||
data_demo[sample(1:32, 8), "vs"] <- NA
|
||||
visual_summary(data_demo)
|
||||
visual_summary(data_demo, palette.fun = scales::hue_pal())
|
||||
visual_summary(dplyr::storms, summary.fun = data_type)
|
||||
visual_summary(dplyr::storms, summary.fun = data_type, na.label = "Missings", legend.title = "Class")
|
||||
# visdat::vis_dat(dplyr::storms)
|
||||
# data_demo <- mtcars
|
||||
# data_demo[sample(1:32, 10), "cyl"] <- NA
|
||||
# data_demo[sample(1:32, 8), "vs"] <- NA
|
||||
# visual_summary(data_demo)
|
||||
# visual_summary(data_demo, palette.fun = scales::hue_pal())
|
||||
# visual_summary(dplyr::storms, summary.fun = data_type)
|
||||
# visual_summary(dplyr::storms, summary.fun = data_type, na.label = "Missings", legend.title = "Class")
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue