Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch lavaan glance bug #577

Merged
merged 2 commits into from Jan 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions NEWS.md
Expand Up @@ -33,6 +33,7 @@ in the augment method for the chi sq test, .residuals column was renamed to .res
- `tidy.htest()` column names are now run through `make.names()` to ensure syntactic correctness (#549 by @karissawhiting)
- Added method `tidy.lm.beta()` to tidy `lm.beta` class models (#545 by @mattle24)
- Add feature for glance.biglm to return df.residual
- Patch bug in glance.lavaan (#577)


## Deprecations
Expand Down
2 changes: 1 addition & 1 deletion R/lavaan-tidiers.R
Expand Up @@ -125,7 +125,7 @@ glance.lavaan <- function(x, ...) {
"cfi"
)
) %>%
as_tibble() %>%
as_tibble(rownames = NA) %>%
tibble::rownames_to_column(var = "term") %>%
spread(., term, value) %>%
bind_cols(
Expand Down