Label ganti segi -faset sebar alur ceritakan
# make the plot
fig = px.line(
data_frame=dfm,
x = 'Date',
y = 'value',
facet_col = 'variable',
facet_col_wrap=6,
facet_col_spacing=0.05,
facet_row_spacing=0.035,
height = 1000,
width = 1000,
title = 'Value vs. Date',
labels = {
'Date': '',
'value': '',
'variable': ''
}
)
Chris P.