일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- web 용어
- CES 2O21 참가
- html
- 대이터
- web 개발
- web
- web 사진
- broscoding
- 재귀함수
- paragraph
- java역사
- 웹 용어
- 데이터전문기관
- 결합전문기관
- inorder
- CES 2O21 참여
- 머신러닝
- tensorflow
- vscode
- classification
- discrete_scatter
- Keras
- pycharm
- cudnn
- KNeighborsClassifier
- bccard
- postorder
- 자료구조
- mglearn
- C언어
- Today
- Total
목록전체 글 (689)
bro's coding

import os import zipfile # data set # 압축 풀기 local_zip = 'C:/Users/givemebro/jupyter notebook/cats_and_dogs_filtered.zip' zip_ref = zipfile.ZipFile(local_zip, 'r') zip_ref.extractall('C:/Users/givemebro/jupyter notebook') zip_ref.close() # data set # 경로 설정 base + (train and validation) base_dir = 'C:/Users/givemebro/jupyter notebook/cats_and_dogs_filtered' train_dir = os.path.join(base_dir,'train..

import FinanceDataReader as fdr import matplotlib import matplotlib.pyplot as plt import numpy as np import pandas as pd import matplotlib.dates as mdates import matplotlib.ticker as mticker from matplotlib import style from matplotlib import font_manager, rc from matplotlib import gridspec import csv from mpl_finance import candlestick_ohlc from datetime import date font_name=font_manager.FontP..
import numpy as np import matplotlib.pyplot as plt from matplotlib.lines import Line2D import matplotlib.animation as animation class SubplotAnimation(animation.TimedAnimation): def __init__(self): fig = plt.figure() ax1 = fig.add_subplot(1, 2, 1) ax2 = fig.add_subplot(2, 2, 2) ax3 = fig.add_subplot(2, 2, 4) self.t = np.linspace(0, 80, 400) self.x = np.cos(2 * np.pi * self.t / 10.) self.y = np.s..

import numpy as np import matplotlib.pyplot as plt from matplotlib import animation fig, ax=plt.subplots() ax.set_xlim((0,2)) ax.set_ylim((-2,2)) ax.grid(True) line,=ax.plot([],[],lw=2) def init(): line.set_data(([],[])) return (line,) def animate(t): x=np.linspace(0,2,1000) y=np.sin(2*np.pi*(x-0.01*t)) line.set_data(x,y) return (line,) ani=animation.FuncAnimation(fig=fig,func=animate,init_func=..
보호되어 있는 글입니다.
https://wikidocs.net/16565 위키독스 온라인 책을 제작 공유하는 플랫폼 서비스 wikidocs.net
install.packages("sqldf")

https://www.guru99.com/installation-configuration-hive-mysql.html How to Download & Install HIVE on Ubuntu Table Operations such as Creation, Altering, and Dropping tables in Hive can be observed in this... www.guru99.com