Skip to content

Commit

Permalink
elimine las opciones y logos de plotly para mejor visualizacion
Browse files Browse the repository at this point in the history
  • Loading branch information
jvillcavillegas committed Nov 14, 2024
1 parent ef51cdf commit a8136e6
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions tablero-zenodo.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ p1 <- zenododata %>%
fill = "Métrica"
)
ggplotly(p1)
ggplotly(p1) %>%
config(displayModeBar = FALSE, showLink = FALSE, displaylogo = FALSE)
```

Expand Down Expand Up @@ -155,7 +156,9 @@ p2 <- zenododata %>%
color = "Métrica"
)
ggplotly(p2)
ggplotly(p2) %>%
config(displayModeBar = FALSE, showLink = FALSE, displaylogo = FALSE)
```


Expand Down Expand Up @@ -195,7 +198,9 @@ p3 <- zenododata %>%
fill = "Métrica"
)
ggplotly(p3)
ggplotly(p3) %>%
config(displayModeBar = FALSE, showLink = FALSE, displaylogo = FALSE)
```


Expand Down

0 comments on commit a8136e6

Please # to comment.