-
Notifications
You must be signed in to change notification settings - Fork 18
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
An Options method with AlgebraOfGraphics.FigureGrid as the first argument #275
Comments
I should have looked more closely - ┌ Warning: Error requiring `AlgebraOfGraphics` from `Books`
│ exception =
│ LoadError: ArgumentError: Package Books does not have AlgebraOfGraphics in its dependencies:
│ - You may have a partially installed environment. Try `Pkg.instantiate()`
│ to ensure all packages in the environment are installed.
│ - Or, if you have Books checked out for development and have
│ added AlgebraOfGraphics as a dependency but haven't updated your primary
│ environment's manifest file, try `Pkg.resolve()`.
│ - Otherwise you may need to report an issue with Books
│ Stacktrace:
│ [1] macro expansion
│ @ ./loading.jl:1051 [inlined] when I load using Books: Books
using Reexport
@reexport using AlgebraOfGraphics
@reexport using Arrow
@reexport using Books
@reexport using CairoMakie
... |
You can ignore that error. It is just a problem that So everything works if you use EDIT: I just triggered CI to test whether it fails here too meaning that |
Thanks for checking. Yes, it works if I use |
It was able to reproduce your issue. I've now added The drawback of adding EDIT: Should be fixed in |
Thanks for addressing this, Rik. I should give you a heads-up that I have looking into quarto and have started converting our book to quarto format. I have experience with R and Rmarkdown and the quarto system has a familiar feel to it. I appreciate what you have done in Books.jl and the response that you have provided to us but I will probably go with quarto in the future. |
Yeah sure no worries. Like I said on https://books.huijzer.xyz/, there are some fundamental problems with |
I haven't taken things apart to discover what the sequence of operations for a call to
Options(...)
is, but it seems that in recent versions ofAlgebraOfGraphics
the type of object returned bydraw
,AlgebraOfGraphics.FigureGrid
, is no longer recognized as an object to be plotted. I needed to change fromto
If you could give me a hint of where to look I would be willing to create a PR.
The text was updated successfully, but these errors were encountered: