Giter VIP home page Giter VIP logo

Comments (6)

xsaintmleux avatar xsaintmleux commented on August 23, 2024

Thanks a lot for the example code! Your intuition was right: geom_tile is not supported yet. We'll let you know when it's done.

from plotly.r.

paulklemm avatar paulklemm commented on August 23, 2024

👍 Thanks a lot!

from plotly.r.

drewbo avatar drewbo commented on August 23, 2024

Any idea when this will be supported or any potential workarounds? I got the same error for geom_bin2d and stat_bind2d. Thanks for the updates

from plotly.r.

msund avatar msund commented on August 23, 2024

Hey @drewbo, we'd love to see your example code! One workaround could be trying out some of the native functions on Plotly? Our docs are here: plot.ly/r, and the latest for what you can do with ggplot2 support is at plot.ly/ggplot2.

from plotly.r.

mkcor avatar mkcor commented on August 23, 2024

Hello @powernap and thanks for your patience!

Right now in Plotly your z values cannot be of type character. I'll open an issue on Plotly's end so we can support this in the future.
I can suggest the following workaround:

library(plotly)

# Your initial data frame (up to randomization...)
test <- data.frame(
  x = rep(c(1,3,6),2),
  y = rep(c(1,3), each = 3),
  w = rep(c(.5,2,1), 2),
  z = sample(rep(LETTERS[1:6])))

# Define a function to map letter back to its index in the alphabet (sorry!)
let2ind <- function(x) which(LETTERS == as.character(x))

# Create new dimension z2
test$z2 <- sapply(test$z, let2ind)

# Plot tiles for z2 instead of z
tilePlot2 <- ggplot(test) + geom_tile(aes(x=x, y=y, fill=z2, width=w))
tilePlot2  # Looks different; play with color scales?

# Send to Plotly
py <- plotly()
py$ggplotly(tilePlot2)

As of yet, we don't support as much flexibility as ggplot2 in terms of controlling per-x width:
https://plot.ly/~mkcor/475
You can edit your plot further in the GUI using the Axes button (typically, X Axis: Category vs Linear). You can change the range and spacing for the x-axis. You can change the colorscale under Traces > Style.

Hope this helps!

from plotly.r.

paulklemm avatar paulklemm commented on August 23, 2024

Hi @mkcor, thanks for this response! It looks good, I think I can work with this! Keep up the great work 👍

from plotly.r.

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.