์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
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 |
- datascience
- pandas
- ADP
- ์ธ๋์ํ๋ง
- ๋ฐ์ดํฐ๋ถ์์ ๋ฌธ๊ฐ
- ํ ์คํธ๋ถ์
- ํ์ด์ฌ
- ๋ ๋ฆฝํ๋ณธ
- ํฌ๋กค๋ง
- iloc
- t-test
- PCA
- opencv
- ๋ฐ์ดํฐ๋ถ์
- ๋น ๋ฐ์ดํฐ
- ADsP
- ๋ฐ์ดํฐ๋ถ๊ท ํ
- DBSCAN
- dataframe
- numpy
- ์ค๋ฒ์ํ๋ง
- ๋์ํ๋ณธ
- ๋น ๋ฐ์ดํฐ๋ถ์๊ธฐ์ฌ
- Python
- ์ฃผ์ฑ๋ถ๋ถ์
- ์๋ํด๋ผ์ฐ๋
- LDA
- ๊ตฐ์งํ
- Lambda
- ๋ฐ์ดํฐ๋ถ์์ค์ ๋ฌธ๊ฐ
๋ชฉ๋ก๐ Python/Crawling (3)
Data Science LAB
์ด๋ฒ์๋ newpaper ๋ผ์ด๋ธ๋ฌ๋ฆฌ๋ฅผ ์ด์ฉํ์ฌ ์น์ฌ์ดํธ์ ๋ด์ค ๊ธฐ์ฌ๋ฅผ ํฌ๋กค๋ง ํด๋ณด๋ ค๊ณ ํฉ๋๋ค. https://www.3gpp.org/news-events/2143-3gpp-meets-imt-2020 3GPP meets IMT-2020 November 28, 2020 Earlier this week the ITU issued a press release to publicise the move to the approval process - by the 193 member states of the Union - of their ITU-R Recommendation: 'Detailed specifications of the radio interfaces of IMT-2020.' (ITU-R www.3gpp.or..
Tabular Data ๋? - ์์ ํ์ผ ํ์์ด๋ ๊ด๊ณํ ๋ฐ์ดํฐ๋ฒ ์ด์ค์ ํ ์ด๋ธ์ ๋ด์ ์ ์๋ ๋ฐ์ดํฐ - ์ฆ, ํ๊ณผ ์ด๋ก ํํ์ด ๊ฐ๋ฅํ ๋ฐ์ดํฐ ์ฆ, ๋ฐ์ดํฐ ๋ถ์์์ ์์ฃผ ์ฌ์ฉํ๋ ํ ํ์์ ๋ฐ์ดํฐ์ด๋ค. Tabular Data ์น์์ scrapping ์ค๋ ๋ถ๋ฌ์ฌ ๋ฐ์ดํฐ๋ ํ์ค๋ฒ ๋์ ๋ฐ์ดํฐ์ด๋ค. https://en.wikipedia.org/wiki/Politics_of_Pennsylvania 1. ํ์ํ ๋ผ์ด๋ธ๋ฌ๋ฆฌ ๋ถ๋ฌ์ค๊ธฐ import pandas as pd import numpy as np 2. ๋ฐ์ดํฐ ๋ก๋ฉ table_PA = pd.read_html('http://en.wikipedia.org/wiki/Politics_of_Pennsylvania') len(table_PA) ๋ถ๋ฌ์จ ๋ฐ์ดํฐ์ ์ ํ์ธํด ๋ณด..
1. ํ์ํ ๋ผ์ด๋ธ๋ฌ๋ฆฌ ๋ก๋ฉ from skimage.io import imread from skimage.transform import resize from matplotlib import pyplot as plt import matplotlib.cm as cm 2. ํฌ๋กค๋งํ ํ์ด์ง ์ ๋ ฅ ํ ์๊ฐํํ์ฌ ํ์ธ example_file = ("http://upload.wikimedia.org/wikipedia/commons/7/7d/Dog_face.png") image = imread(example_file) plt.imshow(image) plt.show() 3. ์๊น ๋ณํ(ํ๋ฐฑ์ผ๋ก) image = imread(example_file,as_gray = True) plt.imshow(image,cmap = c..