DataFrame의 통계 요약을 찾으려면 describe() 메서드를 사용하세요. 처음에는 별칭이 있는 다음 pandas 라이브러리를 가져왔습니다.
import pandas as pd
다음은 CSV 파일이며 Pandas DataFrame을 만들고 있습니다 -
dataFrame = pd.read_csv("C:\\Users\\amit_\\Desktop\\CarRecords.csv")
이제 Pandas DataFrame의 통계 요약을 얻으십시오 -
dataFrame.describe()
예시
다음은 전체 코드입니다.
import pandas as pd # reading csv file dataFrame = pd.read_csv("C:\\Users\\amit_\\Desktop\\CarRecords.csv") print("DataFrame...\n",dataFrame) # count the rows and columns in a DataFrame print("\nNumber of rows and column in our DataFrame = ",dataFrame.shape) # summary of DataFrame print("\nGet the summary of statistics of a DataFrame = \n",dataFrame.describe()) # returns top 7 row records print("\nDataFrame with specific number of rows...\n",dataFrame.head(7))
출력
그러면 다음과 같은 출력이 생성됩니다.
DataFrame... Car Place UnitsSold 0 Audi Bangalore 80 1 Porsche Mumbai 110 2 RollsRoyce Pune 100 3 BMW Delhi 95 4 Mercedes Hyderabad 80 5 Lamborghini Chandigarh 80 6 Audi Mumbai 100 7 Mercedes Pune 120 8 Lamborghini Delhi 100 Number of rows and colums in our DataFrame = (9, 3) Get the summarry of statistics of a DataFrame = UnitsSold count 9.000000 mean 96.111111 std 14.092945 min 80.000000 25% 80.000000 50% 100.000000 75% 100.000000 max 120.000000 DataFrame with specific number of rows ... Car Place UnitsSold 0 Audi Bangalore 80 1 Porsche Mumbai 110 2 RollsRoyce Pune 100 3 BMW Delhi 95 4 Mercedes Hyderabad 80 5 Lamborghini Chandigarh 80 6 Audi Mumbai 100