Top 5 Python Pandas Tips and Tricks You NEED to Know

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 พ.ย. 2024

ความคิดเห็น • 6

  • @sMadaras
    @sMadaras 29 วันที่ผ่านมา +1

    Your codes would be very useful for deeper study. Are you considering uploading them to your github?

    • @DeepCharts
      @DeepCharts  28 วันที่ผ่านมา +1

      Thanks for the message. The github link is now available in the video description.

    • @sMadaras
      @sMadaras 28 วันที่ผ่านมา +1

      @@DeepCharts thanks for the upload, it helps a lot. One more thing: you have clear teaching skills, it’s quite rare among youtubers.

    • @DeepCharts
      @DeepCharts  28 วันที่ผ่านมา

      Thanks, the goal of the channel is to be direct and to the point!

  • @yogimaharaj2587
    @yogimaharaj2587 16 วันที่ผ่านมา

    # Sorting index
    index_range: pd.RangeIndex = pd.RangeIndex(start=1, stop=len(result) + 1, step=1)
    result.index = index_range
    print(result)
    Quantity Price Total
    1 20 250 5000
    2 15 150 2250
    3 10 200 2000

    • @DeepCharts
      @DeepCharts  5 วันที่ผ่านมา +1

      Cool trick! Nice for sharing data with non programmers or R users!