python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Visualization of categorical variables (1D) with ggplot
I have a collection of categorical data and I'm trying to figure out how best to visualize it. It is a "simple" list (97 categories long) with just a name and an associated value. Here's a s...
Karl Wolfschtagg
Votes: 0
Answers: 3
Visualisation of binary search tree in terminal
I am looking for a Python tool to visualize a binary search tree and also do insert and delete operations.
Something like this:
50
\
70
/ \
/ \
63 90
insert(50)
insert(70)
insert(90)
inser...
duffy6
Votes: 0
Answers: 2
I've created a scatter plot with plotly/dash in python and I would like to be able to filter the table next to it by clicking at certain scatter point
app = Dash(__name__)
colors = {
'background': '#ededed',
'text': '#0b1710'
}
fig = px.scatter(df, x="AverageTime", y="Machine",
size="Jobs", colo...
Pat
Votes: 0
Answers: 0
How do I made a Scatterpolar subplot with multiple traces using plotly
Here is my code.
fig = make_subplots(rows=3, cols=1,specs=[[{'type': 'polar'}],[{'type': 'polar'}],[{'type': 'polar'}],[{'type': 'polar'}]])
fig.add_trace(go.Scatterpolar(
r = [df_wy['Successfu...
Dgao
Votes: 0
Answers: 1