일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- sudo pmset -c disablesleep
- 모니터연결
- GPU
- 깃허브
- CUDA
- jekyll
- 나만의블로그
- github blog
- git 명령어
- jekyll theme
- 깃헙
- github.io
- github token
- 잠자기해제
- github
- terminal command
- git command
- pandas
- 깃헙 블로그
- nightly
- python basic
- terminal 명령어
- github command
- 구글애널리틱스
- github secret key
- github 블로그
- 깃허브 블로그
- hydejack
- 깃헙 토큰
- 깃허브 토큰
- Today
- Total
목록
반응형
Python (Code)/Basic
반응형
(4)
Tech-Logs of Data-Scientist
https://medium.com/@5eo1ab/jupyter-notebook%EC%97%90-%EA%B0%80%EC%83%81%ED%99%98%EA%B2%BD-kernel-%EC%B6%94%EA%B0%80%ED%95%98%EA%B8%B0-ed5261a7e0e6
오늘은 pandas의 rename 함수에 대해서 알아보겠습니다. 먼저, pandas.DataFrame을 통해 df라는 dataframe을 작성해보겠습니다. import pandas as pd df = pd.DataFrame({ 'x1' : [1,2,3,4], 'x2' : [5,6,7,8], 'y1' : [1,3,5,7], 'y2' : [2,4,6,8], }) dataframe이 어떻게 생겼는지 확인해보면 아래와 같습니다. df 이 df라는 dataframe에서 컬럼명인 x1과 x2를 각각 a1, a2로 바꾸고싶다면, 아래와 같이 간단하게 바꿀 수 있습니다. df.columns = ['a1','a2','y1','y2'] 하지만, x1 하나만 바꾸고싶다면, 아래와 같이 다른 컬럼명들도 일일이 다 입력해줘야하..
brew 설치 : google에 brew 설치 후, brew 공식홈페이지 들어가서 설치 pyenv 설치 : brew install pyenv 환경변수 세팅 설정해야하는 파일 vi ~/.bash_profile vi ~/.zshrc 위의 파일에 아래의 코드 추가 export PATH="$HOME/.pyenv/bin:$PATH" eval "$(pyenv init -)" 참조 : https://mizykk.tistory.com/17
python version tensorflow는 python 3.9 이상에서 설치 불가능하므로, python 3.8 이하로 설정 필요 다운그레이드는 stackoverflow, tistory 모두 참조해서 변경 이후, terminal과 jupyter notebook의 python version이 다르면, tistory 참조 terminal의 python version : jupyter notebook의 sys.version 또는 terminal의 python --version jupyter의 python version : jupyter notebook의 platform.python_version() tistory를 통해서 tensorflow 설치 2번이 안 될 경우 velog를 통해서 설치 여기서도 에러가..