[무선 통신] UWB LOS/NLOS Classification Using Deep Learning Method (1)
·
통신
안녕하세요. 오늘은 Indoor Positioning에서 [cm]단위의 오차를 내는 UWB 관련 논문에 이야기하겠습니다. coding-yoon.tistory.com/136?category=910542 [무선 통신] Bluetooth Low Energy(BLE) 1. Physical Layer microchipdeveloper.com/wireless:start Wireless Communications - Developer Help Microchip offers a broad portfolio of wireless solutions which are cost effective and very easy to implement. Depending.. coding-yoon.tistory.com BLE는 기기간 ..
[프로젝트]Pandas Dataframe을 이용하여 데이터 전처리 과정
·
🐍 Python/Project
현재 폴더 경로 각 폴더에는 아래와 같이 전처리 되지 않은 CSV가 존재한다. [JS01-210210_222834_p9_고정, JS02-210210_222841_p9고정, JS03-210210_222859_p9_고정]과 같이 데이터 프레임을 병합하고, 분석에 알맞게 전처리를 하는 과정을 보여준다. 아래는 실험 데이터로 중간에 빈 데이터가 보이고, 전처리 과정이 필요한 원본 데이터이다. 이제부터 Pandas를 통해 데이터 분석에 알맞게 전처리를 할 것이다. (위 preprocessing data가 최종 목표 데이터) * Section 1 * 0. 모든 CSV를 불러온다. 1. Null/NaN(결손) 데이터를 제거한다. ex) (df : dataframe) df.isna.sum() 를 통해서 결손데이터를 파..
[파이썬 응용] pandas_datareader의 error문 : FutureWarning: pandas.util.testing is deprecated. Use the functions in the public API at pandas.testing instead. from pandas.util.testing import assert_frame_equal
·
🐍 Python/Application
안녕하세요. pandas_datareader을 이용해서 데이터 처리를 하기 위해 아래 문구처럼 에러문이 뜨는 경우가 있습니다. FutureWarning: pandas.util.testing is deprecated. Use the functions in the public API at pandas.testing instead. from pandas.util.testing import assert_frame_equal 아래 에러문이 뜨더라도 실제 코딩하는데는 아무 문제 없습니다. 위 에러문은 pandas.util.testing 에서 더 이상 사용되지 않기 때문에 뜹니다. 대신, pandas.testing에서 사용할 수 있으니 수정하라는 권고문 같은 정도입니다. 실행될 때마다 에러문이 발생하면 기분이 별로 ..
18진수
'pandas' 태그의 글 목록