Forum Discussion
vjnvinod
4 years agoImpactful Individual
looking for a specific visual
HI Team, I am looking for a specific visual like the below i have looked around, didn't find this, is there anyway i can have this visual in power BI desktop?
vjnvinod
4 years agoImpactful Individual
I managed to resolve it by using python scripts
x_data=dataset.Status
plt.plot(x_data, d)
plt.plot(x_data, -d)
plt.bar(x_data, height=2*d, bottom=-d, width=0.3)
#plt.axis('off')
ax = plt.gca()
ax.set_xticklabels(x_data)
ax.set_yticklabels([])
plt.yticks([])
for data,x in zip(d, range(5)) :
plt.text(x, data+4, data)
plt.show()