GithubHelp home page GithubHelp logo

Comments (4)

thomasp85 avatar thomasp85 commented on May 26, 2024 1

This has been fixed in the dev version of tweenr

from gganimate.

linzi-sg avatar linzi-sg commented on May 26, 2024

I took a look at this. The error was triggered when animating the geom_point layer, because GeomPoint's default_aes for fill is NA (i.e. a logical constant), while part of the transformation done by enter_fade (see gganimate:::transmute_fade for details) involves applying alpha() on various other aesthetic mappings. In particular, the following code

x$fill[no_alpha] <- alpha(x$fill[no_alpha], alpha)

will convert a column of NAs to NA_character_s, which leads to the error when vec_rbind() tries to combine a dataframe of original points (where the fill column is logical) with a dataframe of tweened points (where the fill column has become character).

Workaround

Changing geom_point() to geom_point(fill = NA_character_) in the example would mitigate the issue here. In the long run, though, it may be worthwhile to include some check on the input & output column classes within gganimate:::transmute_fade.

from gganimate.

tnguyenqh avatar tnguyenqh commented on May 26, 2024

I had the same error today and i have tried the suggested solution and I had another error: Error in transform_path(data[0, ], data, ease, enter_length, NULL, enter, : The transformr package is required to tween paths and lines

from gganimate.

thomasp85 avatar thomasp85 commented on May 26, 2024

@tnguyenqh as the message indicates you need to install the transformr package

from gganimate.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.