Giter Site home page Giter Site logo

Comments (6)

jimjam-slam avatar jimjam-slam commented on September 24, 2024

I've gotten this starting to work in caee020. When a stroke aesthetic is supplied, instead of rendering just a pictureGrob, I instead render a gTree that contains the pictureGrob and a pointsGrob of shape 21 (a ring). Because they make up a single geom, this should work with jitters (though I haven't tested it yet) (confirmed).

However, there are some problems:

  • Outline sizes aren't calculated properly, so they don't stay on the flag edges. I'm basing the sizing on solitary geom_points, but I don't understand it too well. I'm also worried that size may be scaling to radius rather than area, as it should (I'm not sure if the size values given to the geom are scaled to area beforehand).
  • Colours are totally messed up (see below), and it seems like they 'stick' if i draw a new plot with modified data. I'm guessing this is a scope problem: variables getting created and hanging around after the draw instead of being cleared. Not too sure.

Example:

> df = data_frame(x = 1:4, y = 4:1, siz = c(1,2,1,2), count = c('au', 'us', 'gb', 'de'), colo = c('black','red', 'green', 'blue'))
> df
# A tibble: 4 x 5
      x     y   siz count  colo
  <int> <int> <dbl> <chr> <chr>
1     1     4     1    au black
2     2     3     2    us   red
3     3     2     1    gb green
4     4     1     2    de  blue
> ggplot(df) +
  geom_flag(aes(x = x, y = y, size = siz, country = count, colour = colo), stroke = 3) +
  scale_size(range = c(5, 10))

ggflags-problems

from ggflags.

jimjam-slam avatar jimjam-slam commented on September 24, 2024

Stroke colours render correctly when supplied statically (ie. not as aesthetics). But they're incorrect when supplied as aesthetics (whether as keywords, like "red", or as hexcodes, like "#ff0000").

from ggflags.

jimjam-slam avatar jimjam-slam commented on September 24, 2024

Well, I clearly need my sleep: I totally forgot that when you supply an expression to the colour aesthetic, the unique values of that expression aren't actually used as colour arguments (the unique values are just used to group the geoms).

The above example needed:

+ scale_colour_manual(
  values = c(
    'black = 'black',
    'red' = 'red',
    'green' = 'green',
    'blue' = 'blue'))

Yep. Time for bed.

from ggflags.

fabeit avatar fabeit commented on September 24, 2024

Was this ever implemented? I can't make it work

from ggflags.

jimjam-slam avatar jimjam-slam commented on September 24, 2024

It wasn't, I'm afraid!

from ggflags.

jimjam-slam avatar jimjam-slam commented on September 24, 2024

Actually, I believe my progress on this is on the feature-outlines branch. So if you install that branch using devtools, you might have some luck! I don't rememberif I ever finished it, though 😭

from ggflags.

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.