Skip to content

Trouble with rendering side bars -- Extra Card seems to appear #11239

Answered by mcanouil
mhusted asked this question in Q&A
Discussion options

You must be logged in to vote

I did a 2 minutes search/reading: https://shiny.posit.co/blog/posts/shiny-express/

Input Output
---
title: "Palmer Penguins Heatmap and Table"
author: "Cobblepot Analytics"
format: dashboard
server: shiny
---

```{python}
#| context: setup
import seaborn as sns
from shiny import reactive
from shiny.express import render, ui
from shinywidgets import render_plotly
import plotly.graph_objects as go
import plotly.io as pio

penguins = sns.load_dataset("penguins")
```


## {.sidebar}

![An image]({{< placeholder 200 200 >}}){#fig-placeholder}

```{python}
# Define dropdown for filtering by species
species_list = penguins["species"].dropna().unique().tolist()
ui.input_selectize(
    "species",…

Replies: 1 comment 14 replies

Comment options

You must be logged in to vote
14 replies
@mcanouil
Comment options

@mhusted
Comment options

@mcanouil
Comment options

@mcanouil
Comment options

Answer selected by mhusted
@mhusted
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
dashboards shiny Related to shiny integration for interactive document
3 participants