Package check result: OK Changes to worse in reverse depends: Package: fixest Check: examples New result: ERROR Running examples in ‘fixest-Ex.R’ failed The error most likely occurred in: > base::assign(".ptime", proc.time(), pos = "CheckExEnv") > ### Name: coef.fixest_multi > ### Title: Extracts the coefficients of fixest_multi objects > ### Aliases: coef.fixest_multi coefficients.fixest_multi > > ### ** Examples > > > base = iris > names(base) = c("y", "x1", "x2", "x3", "species") > > # A multiple estimation > est = feols(y ~ x1 + csw0(x2, x3), base) > > # Getting all the coefficients at once, > # each row is a model > coef(est) id rhs (Intercept) x1 x2 x3 1 1 x1 6.526223 -0.2233611 NA NA 2 2 x1 + x2 2.249140 0.5955247 0.471920 NA 3 3 x1 + x2 + x3 1.855997 0.6508372 0.709132 -0.5564827 > > # Example of keep/drop/order > coef(est, keep = "Int|x1", order = "x1") id rhs x1 (Intercept) 1 1 x1 -0.2233611 6.526223 2 2 x1 + x2 0.5955247 2.249140 3 3 x1 + x2 + x3 0.6508372 1.855997 > > > # To change the order of the model, use fixest_multi > # extraction tools: > coef(est[rhs = .N:1]) id rhs (Intercept) x1 x2 x3 3 1 x1 + x2 + x3 1.855997 0.6508372 0.709132 -0.5564827 2 2 x1 + x2 2.249140 0.5955247 0.471920 NA 1 3 x1 6.526223 -0.2233611 NA NA > > # collin + long + na.rm > base$x1_bis = base$x1 # => collinear > est = feols(y ~ x1_bis + csw0(x1, x2, x3), base, split = ~species) Error: in message_magic(..., .sep = .sep, .end = .end, .wid...: In `string_magic`, the operator `width` must take a numeric argument. PROBLEM: `min(100, .sw)` is not numeric. Execution halted