Python: Intro to Visualization with Matplotlib

Поділитися
Вставка
  • Опубліковано 1 лис 2024

КОМЕНТАРІ • 57

  • @life_with_appy
    @life_with_appy 5 років тому +21

    1:19 Simple Plot
    2:25 Points have x and y values
    3:24 Changing figure size , plot red dots, set axis scales
    5:03 Bar charts
    6:57 Two sets of 10 random dots
    7:45 Time Series
    8:41 Random dots in a scatter
    9:40 Load csv and show multiple chart types
    11:05 Subplots part1
    12:30 Subplots part2
    13:30 saving figure to image file

  • @nicorobin7666
    @nicorobin7666 2 роки тому +3

    Amazing for someone who has an idea already, thank you

  • @jimiahrhodes6869
    @jimiahrhodes6869 Рік тому +1

    This video presents coding well. My project is becoming insurmountably more fun since viewing.

  • @merrittdeeter1329
    @merrittdeeter1329 4 роки тому +1

    Very useful examples for matplotlib beginners.

  • @CHETANSINGH-su4eg
    @CHETANSINGH-su4eg 5 років тому +3

    You are a legend joe . Your content is amazing 👍

    • @oggiai
      @oggiai  5 років тому

      Thanks. 😀

  • @b3astieyt
    @b3astieyt 5 років тому +1

    Thank you so much. I love this presentation format. Was able to follow along code by code and experiment.

  • @Anddy002
    @Anddy002 5 років тому +1

    Very nice instructions and clear explanations. Easy to follow!

  • @pipertripp
    @pipertripp 5 років тому +1

    This was great. Very succinct. Thought Jupyter presentation was excellent better than IDLE IMO. Thx again.

    • @oggiai
      @oggiai  5 років тому +1

      Thanks. I’m doing most of my new videos in Jupyter.

    • @pipertripp
      @pipertripp 5 років тому +1

      @@oggiai yeah, I can see why. With markdown cells and keyword decoration, it makes the presentations nice and easy to read. You end up spending less time deleting content when you transition to the next point you want make.

  • @satoshinakamoto171
    @satoshinakamoto171 4 роки тому +7

    hi, it would be best if you could guide us through a video by also writing the code and use the documentation while doing it. there are so many method calls and functions one has to wonder where to look for additional self exploration. maybe a second window with the documentation open can show us how you figure out how to code and debug your programs.

    • @oggiai
      @oggiai  4 роки тому +3

      Thanks. That’s good feedback

  • @patelvivek7716
    @patelvivek7716 5 років тому +2

    thanks for this video was struggling with some of the things in matplotlib

  • @janspoerer
    @janspoerer 5 років тому +1

    7:49: Defining the variable "ts" seems unnecessary because only the index of "ts" is used. This is shorter (and less confusing imo):
    df = pd.DataFrame(np.random.randn(180, 3),
    index=pd.date_range('1/1/2018',
    periods=180),
    columns=list('ABC')
    )
    df.cumsum().plot()
    plt.show()
    Thanks for the great video!

    • @oggiai
      @oggiai  5 років тому

      Nice contribution!

  • @AwesomeAngryBiker
    @AwesomeAngryBiker 5 років тому

    Awesome, only tiny issue, on the last one, I'd say speed should be y axis and altitude on X axis in 100ft increments

  • @jedrekwrzosek6918
    @jedrekwrzosek6918 4 роки тому +1

    Thank you for the concise tutorial!

  • @muritalaadebayoisah9155
    @muritalaadebayoisah9155 4 роки тому +1

    Thank you. It was very helpful

  • @malmedia9747
    @malmedia9747 5 років тому +1

    Very very nice elaborations

  • @LanceMarks
    @LanceMarks 6 років тому

    The Jupyter Format is great!!

    • @NuEnque
      @NuEnque 5 років тому +1

      Try Jupyter Lab... much better than Jupyter notebook

  • @jeffgalef121
    @jeffgalef121 6 років тому +1

    Awesome video. Thank you very much.

  • @jrod238
    @jrod238 5 років тому +2

    GreAt video. Thank you

  • @b22_srikanthreddy31
    @b22_srikanthreddy31 Рік тому

    why there is mentioned in subplot argument as 221 , 222, 223,224 respectively ?at timing 12.10

  • @Abdullah24241
    @Abdullah24241 6 років тому +1

    GREAT SIR.... THANKS VERY MUCH....

  • @cesararturocastanonacuna3325
    @cesararturocastanonacuna3325 3 роки тому +1

    Legendary!

  • @adityakumarpal91
    @adityakumarpal91 Рік тому

    can you provide a link to the text file that you have used? thanks for such an informative video

    • @oggiai
      @oggiai  Рік тому +1

      I'm sorry I couldn't find the text file on my laptop. And it's not on my GitHub site where I usually put stuff. My apologies.

    • @adityakumarpal91
      @adityakumarpal91 Рік тому

      @@oggiai no issue Sir, really thanks for making so much effort for me 😊. I hope you have a great day

  • @solomonmuwori1954
    @solomonmuwori1954 4 роки тому

    Hi Joe. I am using VS Code IDE and am having issues in importing Matplotlib. Can you assist?

    • @oggiai
      @oggiai  4 роки тому

      You should use your package installer (pip, yum, or whatever) to make sure you have matplotlib installed and updated.

    • @oggiai
      @oggiai  4 роки тому

      You should use your package installer (pip, yum, or whatever) to make sure you have matplotlib installed and updated.

  • @davidw.9711
    @davidw.9711 3 роки тому

    what is better matplotlib or seaborn?

  • @anuragtripathi1744
    @anuragtripathi1744 6 років тому +2

    Please make machine learning in Python tutorials

    • @oggiai
      @oggiai  6 років тому +3

      I’m getting there. Posted videos on Numpy, Pandas and Matplotlib in the past few weeks. Stay tuned!

    • @anuragtripathi1744
      @anuragtripathi1744 6 років тому +1

      Thanks for replying

  • @chandu7691
    @chandu7691 5 років тому

    Could you please share the link to your Git repo.

    • @oggiai
      @oggiai  5 років тому

      Www.github.com/joeyajames and there’s a Python folder with all the Python code

  • @ericbecker7624
    @ericbecker7624 4 роки тому

    11:00: I cannot get a legend to show when I copy your code, I had to enter the legend manually to get the same results as you
    plt.legend(df.iloc[:,[1,2])

  • @pinyichang4680
    @pinyichang4680 2 роки тому +1

    good

  • @irfanmoosani7771
    @irfanmoosani7771 4 роки тому +1

    great video

  • @sathishbabu9096
    @sathishbabu9096 6 років тому

    Hi Jame's, please upload python with grafana combination

  • @NuEnque
    @NuEnque 5 років тому

    Why are we not using Jupyter Lab?

    • @oggiai
      @oggiai  5 років тому

      I’ve done a few videos in Jupyter, and am working on another right now.

    • @NuEnque
      @NuEnque 5 років тому

      @@oggiai Thanks for the reply. It appears as though you are using Jupyter-notebook. I was suggesting you use Jupyter-Lab. It's awesome

  • @uhsay1986
    @uhsay1986 5 років тому

    Do you have the codes placed somewhere ?

    • @oggiai
      @oggiai  5 років тому

      Yes, it’s all at www.github.com/joeyajames in the Python folder.

    • @uhsay1986
      @uhsay1986 5 років тому

      @@oggiai Thank you for the reply.

  • @santhoskumar1369
    @santhoskumar1369 5 років тому

    How can i plot two overlapping gaussian surfaces and its contour in same figure. Only ones contour is getting displayed, also the overlapping is not clear in surface

  • @BrokenRecord-i7q
    @BrokenRecord-i7q 2 роки тому

    Can you share your notebook?

    • @oggiai
      @oggiai  2 роки тому

      All my code is on my GitHub site

  • @gamestv4875
    @gamestv4875 5 років тому

    So this is Python using Mat , Panda and and Numpy to hatch a plot?