일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- write up
- 알고리즘
- 리버싱
- 시스템 프로그래밍
- 어셈블리어
- 시스템프로그래밍
- 프로그래밍
- wargame
- 시스템해킹
- Bandit
- css
- C언어
- 컴퓨터구조
- radare2
- 커널
- pwncollege
- 드론
- 리눅스커널
- kernel
- pwn.college
- px4
- 리눅스 커널
- 워게임
- Pwnable.kr
- 리눅스
- 시그널
- C++
- Leviathan
- 취약점
- 시스템
Archives
- Today
- Total
목록pandas (1)
Computer Security
#2 Jupyter 노트북, Pandas, Numpy, Matplotlib 사용법
전 게시글과 같이 Jupyter 노트북에서 New 버튼을 눌러, Python 3을 클릭하게 되면, 위와 같이 Untitled 라는 문서가 생성 된다. 1. Pandas 사용법 import pandas as pd #pandas의 Dataframe을 생성한다. names = ['Bob', 'Jessica','Mary','John','Mei'] births = [968, 155 , 77, 578, 973] custom = [1,5,25,13,23232] BabyDataSet = list(zip(names,births)) df = pd.DataFrame(data = BabyDataSet , columns=['Names','Births']) df.head() 결과 값 Pandas는 행과 열(엑셀 데이터)로 바꾸어..
프로그래밍/Python 데이터 분석
2022. 7. 6. 18:30