728x90
반응형

filtered_df = df[df["Date"].isin(pd.date_range('2020-08-25', '2020-08-27'))]  ## 날짜별로 구분해서 출력
print(filtered_df)

728x90
반응형
728x90
반응형

# dasos['Date'] = pd.to_datetime(dasos['Date'], format='%Y-%m-%d %H:%M:%S')
# dasos.head()

728x90
반응형
728x90
반응형


# ind_sub =  df['NO2'].loc[(df['Date'] >= '2019-11-13 16:00:00') & (df['Date'] <= '2020-02-14 13:00:00')].index.tolist()
# # ind_sub

 

 

728x90
반응형
728x90
반응형

 

 

https://mindscale.kr/course/pandas-basic/merge/

 

같은 값을 가지는 행들끼리 이어붙이기

 

mindscale.kr

 

 

728x90
반응형
728x90
반응형

에러:

24:00 로 시간이 표시되면 에러 발생

23:00 로 바꾸고, 날짜 바꾸고 월, 년 다 바꿔야 함. 

 

아래 와 같이 해결

 

 

 

 

코드:

 

from datetime import timedelta
import pandas as pd

df['datetime_zero'] = df['Datetime'].str.replace('24:00', '00:00')
df['datetime_er'] = pd.to_datetime(df['datetime_zero'], format='%Y-%m-%d %H:%M:%S')

selrow = df['Datetime'].str.contains('24:00')
df['datetime_obj'] = df['datetime_er'] + selrow * timedelta(days=1)

 

 

 

https://stackoverflow.com/questions/52688645/valueerror-time-data-10-11-2006-2400-does-not-match-format-d-m-y-hm

 

ValueError: time data '10/11/2006 24:00' does not match format '%d/%m/%Y %H:%M'

I tried: df["datetime_obj"] = df["datetime"].apply(lambda dt: datetime.strptime(dt, "%d/%m/%Y %H:%M")) but got this error: ValueError: time data '10/11/2006 24:00' does not match format '%d/...

stackoverflow.com

 

https://kkwor1d.tistory.com/39?category=986286 

 

[에러해결] datetime | hour 24:00:00 변환 오류

Problem with converting to 'datetime' type: ValueError: hour must be in 0..23. [문제] 시계열 자료에서 시간 데이터는 datetime 처리 후 작업을 하는데, 간혹 데이터 중에 시간 부분이 '24시'로 표현되어 있..

kkwor1d.tistory.com

 

 

 

 

728x90
반응형
728x90
반응형

https://yganalyst.github.io/data_handling/memo_9/

 

[Python] pandas 문자열 관련 함수 str

판다스의 str 연산자를 이용해 문자열을 다루는 방법

yganalyst.github.io

 

 

 

 

728x90
반응형
728x90
반응형

태양광 계산법

 

https://earthscience.stackexchange.com/questions/14491/how-to-calculate-the-solar-radiation-at-any-place-any-time

 

How to calculate the solar radiation at any place, any time

The solar radiation is one of the important factors controlling the formation of $O_3$, and thereby impacting the levels of various secondary species in the atmosphere. However, in the campaign of

earthscience.stackexchange.com

 

728x90
반응형
728x90
반응형

[chpark@adis00 em_real]$ ncdump -v Times  in.nc
netcdf out {
dimensions:
        Time = 1 ;
        DateStrLen = 19 ;
        emissions_zdim = 1 ;
        south_north = 319 ;
        west_east = 431 ;
variables:
        char Times(Time, DateStrLen) ;
                Times:Times\:_FillValue = " " ;
        float E_CO2(Time, emissions_zdim, south_north, west_east) ;
                E_CO2:coordinates = "XLONG XLAT" ;
                E_CO2:stagger = " " ;
                E_CO2:units = "mol km^-2 hr^-1" ;
                E_CO2:description = "EMISSIONS" ;
data:

 Times =
  "2016-01-11_00:00:00" ;
}

 

[chpark@adis00 em_real]$ ncap2 -O -s 'Times(0,:)="2021-05-11_06:00:00"' in.nc out.nc
[chpark@adis00 em_real]$ ncdump -v Times  out.nc
:

:

data:

 Times =
  "2021-05-11_06:00:00" ;
}

728x90
반응형
728x90
반응형

https://ichi.pro/ko/yeonsog-yeol-nulag-deiteo-cheoli-bangbeob-mich-guhyeon-78086618663363

 

연속 열 누락 데이터 처리 방법 및 구현

지난 블로그 링크에서 누락 된 값과 그 유형에 대해 설명했습니다. 이 블로그에서는 구현을 통해 데이터 세트의 연속 데이터 열에 대한 누락 된 값을 처리하는 방법을 설명합니다.

ichi.pro

 

 

 

728x90
반응형
728x90
반응형

https://teddylee777.github.io/pandas/pandas-interpolation

 

Pandas를 활용한 결측치 보간(interpolation) 하기

Pandas를 활용한 결측치 보간(interpolation) 하는 방법에 대해 알아보겠습니다.

teddylee777.github.io

 

 

728x90
반응형

+ Recent posts