Coder Social home page Coder Social logo

Recompute after resizing about ggrepel HOT 8 CLOSED

slowkow avatar slowkow commented on August 17, 2024
Recompute after resizing

from ggrepel.

Comments (8)

hadley avatar hadley commented on August 17, 2024

You're already doing the computation in the makeContent method. Maybe that is enough?

@pmur002 where's the best place to look for docs on grobs that redraw themselves as the plot changes size? Is there more to it than makeContent?

from ggrepel.

slowkow avatar slowkow commented on August 17, 2024

In the makeContent method, I compute the line segment connecting the original data point to the text label. However, this method does not include computations to repel labels away from each other.

I guess what I might need is a makeContent or drawDetails method for the gTree that has all the textrepelgrob grobs. After a bit of hacking, no luck.

I tried something like this:

GeomTextRepel <- ggproto(...,
  draw_panel = function(...) {
    # 'grobs' is a list with many textrepelgrob's
    ggname("geom_text_repel", grobTree(children = grobs, cl = "textrepeltree"))
  }
)
# This doesn't seem to work...
drawDetails.textrepeltree <- function(x, recording) {
  # Repulsion computation should happen here,
  # where I should have access to all textrepelgrob children.
  print(x)
}
# This also doesn't seem to work...
makeContent.textrepeltree <- function(x) {
  # Repulsion computation should happen here,
  # where I should have access to all textrepelgrob children.
  print(x)
}

I'm now reading R Graphics, Second Edition by Paul Murrell, and it is helping me to understand how grid works, but I'm still a few steps away from seeing how this could be done. Chapter 8 is helpful, but does not have enough details on how to do calculations with a tree's children.

from ggrepel.

hadley avatar hadley commented on August 17, 2024

You might also need https://journal.r-project.org/archive/2013-2/murrell.pdf and https://www.stat.auckland.ac.nz/~paul/Reports/CustomGrobs/custom-grob.html

from ggrepel.

slowkow avatar slowkow commented on August 17, 2024

Thanks for those additional links! It seems that makeContent is the proper function to use, and not drawDetails.

Following the examples, I expect that this function should be called upon resizing the plotting area. However, I'm not seeing any output.

# Never gets called :(
makeContent.textrepeltree <- function(x) {
  sink("/tmp/gridstuff.txt")
  cat("testing")
  sink()
  # cat(x$children[[1]]$name)
  x
}

If only I could get a makeContent function to be called that has access to all the textrepelgrob children, I would be on my way to getting this feature implemented.

from ggrepel.

hadley avatar hadley commented on August 17, 2024

Did you export the S3 method? It might be necessary because of the way the generic gets called.

from ggrepel.

slowkow avatar slowkow commented on August 17, 2024

Thanks for the tip! After exporting, it works!

I'll post again when I've made more progress.

from ggrepel.

slowkow avatar slowkow commented on August 17, 2024

@hadley It works! Thank you so much for the help.

ggrepel-autoresize-compressor

from ggrepel.

hadley avatar hadley commented on August 17, 2024

Awesome!

from ggrepel.

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.