Changelog
Source:NEWS.md
adlgraphs 0.3.6
added two new functions row_means()
and make_nested()
Fixing some bugs in get_corr()
Previously
get_corr()
had some bugs that have been fixed.Also added the ability to group by multiple variables
adlgraphs 0.3.53
added a new function flip_val()
and updated a vignette
updated the vignette for data_transformations
- Simplified the vignette and added information about
flip_val()
adlgraphs 0.3.3
adlgraphs 0.2.2
adlgraphs 0.2.1
New functions
codebook
- This function allows you to create a new data.frame object where each column is a different attribute and each row is a different variable
- Contains one argument:
df
prettytable
- Add this function after using
get_freqs()
to make a pretty gt table - Contains one argument:
x
- Hoping to continue building this out for means, coefficients, and possibly more
adlgraphs 0.2.0
This update includes a bunch of new features and bug fixes. Some of the underlying code has also been updated to be more modular by replacing repetitive code with internal helper functions.
New functions
get_means
- This function makes it easy to calculate means with confidence intervals.
- It contains four arguments:
df
,x
,group
, andwt
- The most important argument is
group
as it allows you to calculate means by a grouping variable. It operates similar to the.by
argument in somedplyr
functions.
get_freqs
- This makes it easy to calculate weighted frequencies.
- It contains the same first four arguments as
get_means
but also contains a fifth argument,cross_tab
. By settingcross_tab = TRUE
you pivot the table so that it appears like most cross tabs.