Unanswered
Hi. When Using The Logger'S
hi DistressedGoat23
can you send me an example of you report your histogram ?
i managed to transpose a histogram using something like this :
` t = Task.init(project_name=project_name, task_name=task_name)
df = px.data.tips()
figV = px.histogram(df, x="total_bill", y="tip", orientation='v')
figH = px.histogram(df, x="total_bill", y="tip", orientation='h')
log = t.get_logger()
log.report_plotly(
title='Histo',
series='plotlyH',
iteration=0,
figure=figH)
log.report_plotly(
title='Histo',
series='plotlyV',
iteration=0,
figure=figV) `
Could it work for your purpose ?
157 Views
0
Answers
2 years ago
one year ago