We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Here is my code:
from pyprocessmacro import Process df["present_narration_bin"] = ( df["present_narration"] == "high present narration" ).astype(float) p = Process(data=df, model=4, x="present_narration_bin", y="attitude", m=["credible"])
df.present_narration has type:
df.present_narration
Name: present_narration, Length: 505, dtype: category Categories (2, object): ['high present narration', 'low present narration']
statsmodels automatically casts it to float so I thought it would be nice to be able to write:
p = Process(data=df, model=4, x="present_narration", y="attitude", m=["credible"])
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here is my code:
df.present_narration
has type:statsmodels automatically casts it to float so I thought it would be nice to be able to write:
The text was updated successfully, but these errors were encountered: