그 결과 combined_stats는 다음과 같다.
결과
Ticker Attribute Recent 0 amzn Market Cap (intraday) 5 1.22T 1 amzn Enterprise Value 3 1.23T 2 amzn Trailing P/E 116.90 3 amzn Forward P/E 1 98.04 4 amzn PEG Ratio (5 yr expected) 1 2.28 5 amzn Price/Sales (ttm) 4.17 6 amzn Price/Book (mrq) 18.70 7 amzn Enterprise Value/Revenue 3 4.17 8 amzn Enterprise Value/EBITDA 6 33.47 9 ba Market Cap (intraday) 5 78.44B 10 ba Enterprise Value 3 101.84B
이제 각각의 재무비율을 앞서 살펴본 방법대로 뽑아내면 된다.
# 주가수익률(P/E) 비율
combined_stats[ combined_stats.Attribute.str.contains( "Trailing P/E" ) ]
# 주가매출액(Price-to-Sales) 비율
combined_stats[ combined_stats.Attribute.str.contains( "Price/Sales" ) ]
# 주가순자산(Price/Book) 비율
combined_stats[ combined_stats.Attribute.str.contains( "Price/Book" ) ]
# 주가이익성장배율(Price/Earnings-to-Growth) 비율
combined_stats[ combined_stats.Attribute.str.contains( "PEG" ) ]
# Forward P/E 비율
combined_stats[ combined_stats.Attribute.str.contains( "Forward P/E" ) ]