분류 전체보기(229)
-
[Tip] 맥에서 로지텍 마우스 vscode뒤로가기
[Tip] 맥에서 로지텍 마우스 vscode뒤로가기 원인 Intellij에서는 마우스로 뒤로가기 하면 이전커서로 돌아가는데 vscode는 그렇지 않아서 방법을 찾아보았음 해결 Mouse Back Forward To Navigate Setting · Issue #140714 · microsoft/vscode · GitHub 아직 제공하지 않는듯..
2022.10.24 -
[python] df.drop if exists
[python] df.drop if exists hh = pd.DataFrame([{"1":1,"2":3},{"1":1,"2":3},{"1":1,"2":3},{"1":1,"2":3}]) ii = pd.DataFrame([{"1":1,"2":3},{"1":1,"2":3},{"1":1,"2":3},{"1":1,"2":3}]) test = pd.DataFrame([{"1":1,"2":3},{"1":1,"2":3}]) hh.drop(columns=["3"]) 오류발생! hh.drop(columns=["3"], errors='ignore') ## output 1 2 0 1 3 1 1 3 2 1 3 3 1 3 정상 진행!
2022.10.13 -
[Apple M1] M1 pro 갤럭시 usb 테더링
내 피씨, 회사에서 받은 피씨 둘다 성공,, M1 Mac에서 안드로이드 USB 테더링하기 :: Chaealarm's Project (tistory.com)
2022.09.30 -
[k] 서비스, 파드, 컨테이너 구조 및 CrashLoopBackOff 해결
[k] 서비스, 파드, 컨테이너 구조 Service, Deployment 서비스포트에 targetPort가 있고 Deployment에 conatinerPort및 pod에 conatinerport 없어도 오류 나지 않음 apiVersion: v1 kind: Service metadata: name: name labels: app: name spec: ports: - port: 8080 targetPort: 8080 selector: app: name apiVersion: apps/v1 kind: Deployment metadata: name: d namespace: heis labels: app: d spec: replicas: 1 selector: matchLabels: app: d template: m..
2022.09.26 -
[Python] json to dataframe (+ chain key)
[Python] json to dataframe (+ chain key) 관련오류 string 을 json으로 바꿀때 생기는 오류 hh = "{'coord': {'lon': 127.3794, 'lat': 36.5346}, 'weather': [{'id': 800, 'main': 'Clear', 'description': 'clear sky', 'icon': '01d'}], 'base': 'stations', 'main': {'temp': 295.83, 'feels_like': 2..
2022.09.20 -
[Python] If using all scalar values, you must pass an index
[Python] If using all scalar values, you must pass an index json 배열이 아닌 단순 json을 dataframe으로 변환할 경우 해당 오류를 반환한다. (1) 데이터 설정시 인덱스값을 설정해준다 df = pd.DataFrame({'col1': 1, 'col2': 2}, index = [0]) (2) 단순 json을 배열안에 넣어서 dataframe을 선언한다. df = pd.DataFrame([{'col1': 1, 'col2': 2}])
2022.09.20