You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
library(tidyLPA)
#> You can use the function citation('tidyLPA') to create a citation for the use of {tidyLPA}.#> Mplus is not installed. Use only package = 'mclust' when calling estimate_profiles().
library(dplyr)
#> Warning: package 'dplyr' was built under R version 3.6.2#> #> Attaching package: 'dplyr'#> The following objects are masked from 'package:stats':#> #> filter, lag#> The following objects are masked from 'package:base':#> #> intersect, setdiff, setequal, unioniris_sample<-iris[c(1:4, 51:54, 101:104), ] # to make example run more quickly# Example 1:iris_sample %>%
subset(select= c("Sepal.Length", "Sepal.Width",
"Petal.Length")) %>%
estimate_profiles(3, package="mplus")
#> Error: Mplus variable names must start with an alphabetical character, and may contain numbers and/or the underscore character (_). Some of your variables violate this rule:#> Sepal.Length#> Sepal.Width#> Petal.Length
Created on 2020-12-29 by the reprex package (v0.3.0)
The text was updated successfully, but these errors were encountered: