การทำงานกับชุดข้อมูลดิบ

การพยากรณ์ทางการเงินด้วย Python

Victoria Clark

CGMA Financial Analyst

การหาชุดข้อมูลสำหรับการพยากรณ์

  • Tesla Motors Inc.
  • ข้อมูลในอดีตที่เปิดเผยต่อสาธารณะ
  • งบกำไรขาดทุนในรูปแบบ .csv

โลโก้ Tesla

การพยากรณ์ทางการเงินด้วย Python

มองภาพรวมเบื้องต้น

งบกำไรขาดทุน Tesla

การพยากรณ์ทางการเงินด้วย Python

การกรองข้อมูลด้วย Python

# Choose some interesting metrics
interesting_metrics = ['Gross profit', 'Net income']
# Using the .isin() method, filter for rows containing these metrics
filter = income_statement.metric.isin(interesting_metrics)
filtered_income_statement = income_statement[filter]

print(filtered_income_statement)

งบกำไรขาดทุน Tesla หลังกรองข้อมูล

การพยากรณ์ทางการเงินด้วย Python

มาฝึกกันเถอะ!

การพยากรณ์ทางการเงินด้วย Python

Preparing Video For Download...