-
Notifications
You must be signed in to change notification settings - Fork 2
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
octoplot() ignoring flags in julia terminal #54
Comments
Hi @mkenworthy , thanks for giving octofitter a try. A couple questions for you:
To adjust the time range shown in the plots, you can use the argument:
If you need to fine tune the limits, you can also use the
Finally, you can also try switching to GLMakie from CairoMakie. This creates an interactive figure that you can zoom around on until you have the limits just right. You can then run Please do let me know how it goes, and if you have any feature requests for the plot output. |
Ah @mkenworthy -- you mentioned that Could you please share the version of Octofitter that you are currently using?
|
I should also add, that if you're just looking for predicted positions you can use this calculation:
|
I'm learning octofitter and I want to get predicted positions of an orbital fit for an observing run.
octoplot() displays a 3x3 panel by default, but trying to limit the panels using:
fig = octoplot(model, chain; show_astrom=true, # Show orbit in sky plane (mas) show_physical_orbit=false, # Show orbit in physical units (AU) show_astrom_time=true, # Show sep/PA vs time show_rv=false, # Show stellar RV show_relative_rv=false, # Show planet-star relative RV show_hgca=false, # Show proper motion anomaly show_mass=false # Show mass posterior )
...results in the same 3x3 plot - octoplot() seems to be ignoring the command line options.
epochs = [ mjd("2024-01-01"), mjd("2025-01-01"), mjd("2026-01-01") ]
and
octoplot(model, chain, mark_epochs_mjd=epochs)
similarly doesn't adjust the time axes on the plots.
The text was updated successfully, but these errors were encountered: