Import multiple datasets and plot in Python

Поделиться
HTML-код
  • Опубликовано: 7 авг 2024
  • In this video, we are going to learn how to import multiple data files (such as CSV or .txt files) and then extract the data, and plot in python. I have uploaded the dataset and the notebook file in Github.
    github.com/manab-youtube/yout...
    Thanks for watching. I hope you liked the video. Make sure to subscribe and turn on “all notifications” to get updates on all upcoming videos. Let me know in the comments section below if you have any questions. Stay Tuned !!
    ❤️SUBSCRIBE ► bit.ly/drmanab
    👍 Like ❤️SUBSCRIBE 🧣Comment
    ✔️ Follow me on
    👉 Instagram: / koolmanab
    👉 Twitter: / koolmanab
    Best wishes,
    Manab

Комментарии • 5

  • @user-zr8ov6cx9e
    @user-zr8ov6cx9e Год назад +1

    Very helpful

  • @jasonlake6986
    @jasonlake6986 Год назад

    This is a super-helpful video, but how could I plot the data from each file in a separate plot please?

    • @DrManab
      @DrManab  Год назад +1

      If you want to plot each file separately; you can just add plt.figure(i) just before plt.plot(x,y). This will plot each file separately. You can also use subplots, if you want to plot in specific order.

    • @jasonlake6986
      @jasonlake6986 Год назад +1

      @@DrManab That's amazing... thank you!