How to plot US 2020 elections with plotly

hello everyone, in this video we will use plotly express to plot a choropleth map showing the US 2020 Elections results.
Interested in learning Python, checkout the beginner Python courses here
How to Build GUI Apps with Python and Tkinter
www.udemy.com/share/103cfr/
Learn Python From Scratch and Build 10 Programs
www.udemy.com/share/102FAw/
A Practical Guide to Coding With Python
www.udemy.com/share/1037IY/

Пікірлер: 7

  • @mozescodes6618
    @mozescodes66183 жыл бұрын

    Thanks a lot great video and finally explained/written in easy understandable way(not like a lot of others that are over complicated ). Much appreciated helped a lot with my own US election project!

  • @101touchapps

    @101touchapps

    3 жыл бұрын

    Thanks Richard, am glad i could help

  • @ChristianStraus
    @ChristianStraus Жыл бұрын

    Thank you very much for this wonderful video. You helped me a lot.

  • @priyanshuvettori5179
    @priyanshuvettori51796 ай бұрын

    Not a single person is able to add annotations on the states like the name amd the data.

  • @tensorsarecool

    @tensorsarecool

    6 ай бұрын

    I added state names that appear on the map, so it visually displays the abbreviation for each state: # add state abbreviations fig.add_scattergeo( locations=data_for_map['id'], locationmode='USA-states', text=data_for_map['id'], mode='text', textfont=dict( color='white', )) You can add this before doing fig.show()

  • @NachiketKumarSingh
    @NachiketKumarSingh Жыл бұрын

    Why couldn't you write locations= 'state' in place of 'usa_state_code'

  • @101touchapps

    @101touchapps

    Жыл бұрын

    well that's another way to do it! will try it out.