Closed camilogarciabotero closed 7 months ago
There might be tedious solution: reexport general tools like DataFrames
, CSV
and others that are commonly used in the Tidier ecosystem, and then reexport the specific public exports from each Tidier library?
I'm open to ideas. In general, Tidier is intended to come batteries included and meant only for interactive use.
Folks with time-sensitive workflows should probably import the specific sub-packages they need individually. Importantly, the base packages all need to also work out of the box, which is why there's lots of re-exporting of portions of DataFrames, etc.
But if there's a way to make the situation better, happy to look.
There might be tedious solution: reexport general tools like
DataFrames
,CSV
and others that are commonly used in the Tidier ecosystem, and then reexport the specific public exports from each Tidier library?
Hmmm, let's put this in our back pocket and reconsider this once the ecosystem is more mature and we have a larger user base. Tidier itself right now is quite low-maintenance, and I think there's a huge advantage to that bc it lets us innovate faster on the base packages.
10 seconds is acceptable for the "batteries included" version, for now, I think. At least for TidierPlots, I'm still changing the public exports quite a lot as I figure out better ways to organize things and add ggplot features - I'd rather just keep that up to date inside the package rather than having to do it twice
Let's close this issue for now. Will revisit once the base packages mature more.
10 seconds is acceptable for the "batteries included" version
I agree, maybe when reaching a more stable and mature this could be concern.
Since this is a meta-package I know it reexports all the other packages using
Reexport.jl
. This is cool, but it could take more than 50 % of the loading time in recompilation!This concerns all the reexported packages exporting
DataFrames
and similar common packages. I don't know any solution to that, but maybe havingReexport.jl
more intelligently reexport packages...