편집 기록

편집 기록
  • 프로필 nowp님의 편집
    날짜2020.05.21

    python에서 csv데이터 dataframe ==으로 좌표 추출할때


    df =pd.read_csv('사업보고서 (2019.12)삼성전자연결 현금흐름표.csv', encoding = 'euc-kr')
    
    df == '당기순이익'
    
    C:\Users\kmw07\anaconda3\lib\site-packages\pandas\core\ops\array_ops.py:253: FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perform elementwise comparison
      res_values = method(rvalues)
    

    이렇게 나오구 당기순이익 셀도 False라고 표기됩니다. 왜 이렇게 되는지 알 수있을까요??

  • 프로필 알 수 없는 사용자님의 편집
    날짜2020.05.21

    python에서 csv데이터 ==으로 좌표 추출할때


    df =pd.read_csv('사업보고서 (2019.12)삼성전자연결 현금흐름표.csv', encoding = 'euc-kr')

    df == '당기순이익'

    C:\Users\kmw07\anaconda3\lib\site-packages\pandas\core\ops\array_ops.py:253: FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perform elementwise comparison res_values = method(rvalues)

    이렇게 나오구 당기순이익 셀도 False라고 표기됩니다. 왜 이렇게 되는지 알 수있을까요??