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(lintr)
lint(
text="ivreg::ivreg(Q ~ P + D | D + F + A, data = Kmenta)",
linters= T_and_F_symbol_linter()
)
#> <text>:1:31: style: [T_and_F_symbol_linter] Use FALSE instead of the symbol F.#> ivreg::ivreg(Q ~ P + D | D + F + A, data = Kmenta)#> ~^
The F here corresponds to the column name:
data(Kmenta, package="ivreg")
colnames(Kmenta)
#> [1] "Q" "P" "D" "F" "A"
The
F
here corresponds to the column name:Created on 2024-07-28 with reprex v2.1.1
The text was updated successfully, but these errors were encountered: