GithubHelp home page GithubHelp logo

Comments (2)

thomasp85 avatar thomasp85 commented on May 26, 2024

I am not able to replicate this in general and your code is not reproducible since data is not available to me. Can you please provide a reprex assuming the issue remains

from gganimate.

DOH-PXC5303 avatar DOH-PXC5303 commented on May 26, 2024

Hi @thomasp85, I ran into a similar issue. Example below. I'm running ggplot2 v3.4.4 and gganimate v1.0.8. Ran into a S.O. thread that suggested 1.0.7 may not have the same issue but I have not tested that.

library(ggplot2)
library(gganimate)

df <- structure(
  list(Submitter = c("AAA", "BBB", "CCC", "DDD", "EEE", 
                     "AAA", "BBB", "CCC", "DDD", "EEE", "AAA", "BBB", "CCC", "DDD", 
                     "AAA", "BBB", "CCC", "DDD"), 
       Submission_Date = structure(c(19389, 
                                     19389, 19389, 19389, 19389, 19358, 19358, 19358, 19358, 19358, 
                                     19327, 19327, 19327, 19327, 19297, 19297, 19297, 19297), class = "Date"), 
       Cumulative_Count = c(275, 97, 23559, 3300, 878, 263, 97, 
                            23081, 3271, 0, 236, 97, 22727, 3212, 230, 97, 22288, 3206
       )), 
  row.names = c(NA, -18L), 
  class = c("tbl_df", "tbl", "data.frame"))

anim <- ggplot(df,
               aes(x = Submission_Date, y = Cumulative_Count, color=Submitter)) +
  geom_point() +
  geom_line()+
  transition_reveal(Submission_Date)

animate(anim,
        nframes = 120,
        end_pause = 100)
#> `geom_line()`: Each group consists of only one observation.
#> ℹ Do you need to adjust the group aesthetic?
#> `geom_line()`: Each group consists of only one observation.
#> ℹ Do you need to adjust the group aesthetic?

Edit: Ran using gganimate v1.0.7 and found a slightly altered output with lines and points. Output does not have the disappearing line at end pause issue.
example

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.