-
Notifications
You must be signed in to change notification settings - Fork 8
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
Feature ptsize #27
Feature ptsize #27
Conversation
Hmmm. Looks like quite a few tests are failing. I'm out right now, but can you test locally with The snapshots are only run on Ubuntu, so you'll need that distro. See here: https://github.com/vincentarelbundock/tinysnapshot |
Fascinating... It passed all tests and checks locally. I'll do more digging to figure out what's going on on Monday. |
Looks like the tests on Using the CRAN release (V0.11.0) I get the following:
Further inspecting the test script confirms that tests fail for After installing the stable development version of
Thoughts? |
Ah, sorry I should have anticipated this. The dev version of fixest includes a dof correction to the The ggiplot test snapshots are built against this corrected dev version. What I don't get, though, is why the GH Actions CI test suite for this PR isn't pulling in the latest dev version. I've specified the necessary remote in the DESCRIPTION file. I'll try to take a peak later today. |
Your |
Hey JC, sorry for the delay on this. I've been working on support for (gg)coefplot, which has required a fairly major code refactoring... In the meantime, the new release of fixest has now reached CRAN. I have this change reflected in my coefplot branch, but for your purposes it might just be simplest to include them directly in this PR. We need only changed the DESCRIPTION file to require fixest >= 0.11.2 and can then drop the Remotes entry. Hopefully all the tests run properly once this update is completed. |
Switch to latest fixest CRAN release
I see you made the changes to the |
Finally managed to test this locally and I can see what's causing them to fail now... Background: Instead of using The upshot is that using EDIT/ADD: A simple solution to pass the test is obviously just to re-hardcode the (Maybe there's a smarter way involving |
I think defaulting to |
Checks passed 🎉 |
This PR is based on #26. It provides support for a
pt.size
argument that controls the size of markets whengeom_style = "pointrange"
is used. In the absence of an argument,pt.size
defaults to the values set inGeomPoint$default_aes$size
. Checks are handled byggplot2
internals.The
dev
branch seems to be inactive, so suggesting this be merged tomain
instead.Created on 2023-10-27 with reprex v2.0.2