Vladimir Mikheev
Vladimir Mikheev

Reputation: 472

How to solve Unfold.effects crash?

You can see problem on the picture: UndefVarError: _reference_grid not defined

enter image description here

Some additional very strange findings:

  1. for any reason this function perfectly works in Pluto
  2. page for effect function on Unfold manual page shows 404.

Upvotes: 0

Views: 46

Answers (1)

Mikael Öhman
Mikael Öhman

Reputation: 2375

As of writing this, Unfold.jl still tries to access _reference_grid, which, given that it's not exported by Effects, and has a preceding underscore, it probably never should have.

Checking the commit history of Effects.jl, you'll find that this function was removed in 2022-08-20 https://github.com/beacon-biosignals/Effects.jl/pull/43

Unfold needs to be fixed and updated, or Effects downgraded.

If it works when you use Pluto, then perhaps you are using a different environment there which happens to have a sufficiently old Effects. I think version 0.1.0 to 0.1.5 should be OK.

] add [email protected]

You should consider opening a issue with Unfold.jl

Upvotes: 2

Related Questions