일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 빅데이터 지식
- Linked List
- dataStructure
- Data Analyst
- priority queue
- data
- 뉴욕 화장실
- 빅데이터
- data scientist
- Restroom
- Algorithms
- Computer Science
- binary search tree
- Binary Tree
- BST
- Data Structure
- 빅데이터 커리어 가이드북
- Newyork
- Preparing for the Google Cloud Professional Data Engineer Exam
- Study
- Computer Organization
- 데이터 분석가
- 화장실 지도
- exam
- algorithm
- HEAPS
- hash
- Heap
- Data Engineer
- 데이터 엔지니어
- Today
- Total
목록Development Log (19)
Jaegool_'s log

https://teamsparta.notion.site/3-cdea49d6bc514763b80d5508ca92e4ca [스파르타코딩클럽] 데이터분석 종합반 - 3주차 매 주차 강의자료 시작에 PDF파일을 올려두었어요! teamsparta.notion.site import pandas as pd url = 'https://raw.githubusercontent.com/justmarkham/DAT8/master/data/drinks.csv' drink_df = pd.read_csv(url, ',') - nameOfDataFrame[LIST] ex) drink_df[['beer_servings','wine_servings']] ex) drink_df[drink_df.continent=='EU'].head(20..
https://teamsparta.notion.site/3-01b7e84e0fb34bba8ab67a99ec650f11 [내일배움단] 앱개발 종합반 - 3주차 매 주차 강의노트 시작에 PDF파일과 영상 링크를 올려두었어요! teamsparta.notion.site 3주차에서는 리액트 네이티브에서 중요한 개념들을 배웠습니다. - 리액트 네이티브는 리액트(React.js) 라이브러리 기반으로 만들어진 프레임워크 입니다. 1) 컴포넌트(Component) : 정해진 엘리먼트들(요소)을 사용하여 만든 화면의 일부분 2) 상태(State) : 컴포넌트에서 데이터를 유지하고 관리하기 위한 유일한 방법 == 그냥 사용할 데이터! 3) 속성(Props) : 상위 컴포넌트에서 하위 컴포넌트로 데이터를 전달하는 방식 == ..

https://teamsparta.notion.site/2-a3962bdb49ef4c8ba54b00c6f3e52f99#6ce87e6511a5430ea3b65fedc6c91de7 [스파르타코딩클럽] 데이터분석 종합반 - 2주차 매 주차 강의자료 시작에 PDF파일을 올려두었어요! teamsparta.notion.site 네이버 쇼핑 리뷰를 이용하여 긍정 워드 클라우드/ 부정 워드 클라우드 만들기 import pandas as pd import numpy as np import matplotlib.pyplot as plt df = pd.read_table('https://raw.githubusercontent.com/bab2min/corpus/master/sentiment/naver_shopping.txt',..

https://teamsparta.notion.site/2-3e404a42faef4977bede8252891d2ead#d112045731504bf5897b27576a85d94e [내일배움단] 앱개발 종합반 - 2주차 매 주차 강의노트 시작에 PDF파일을 올려두었어요! teamsparta.notion.site https://reactnative.dev/docs/style#docsNav Style · React Native With React Native, you style your application using JavaScript. All of the core components accept a prop named style. The style names and values usually match ho..

https://teamsparta.notion.site/1-e1ca1c5c95df458ca8a216d64d6d3235 [내일배움단] 앱개발 종합반 - 1주차 매 주차 강의노트 시작에 PDF파일을 올려두었어요! teamsparta.notion.site

https://teamsparta.notion.site/1-24d64fcddf1b4754bf48344858aadcff [스파르타코딩클럽] 데이터분석 종합반 - 1주차 매 주차 강의자료 시작에 PDF파일을 올려두었어요! teamsparta.notion.site https://www.kaggle.com/dipam7/student-grade-prediction Student Grade Prediction Predict the final grade of Portugese high school students www.kaggle.com import pandas as pd You should install the 'pandas' package to use pandas before writing a code if y..

https://teamsparta.notion.site/5-18b62b60cc7d4343a5917dc8b7121977 [스파르타코딩클럽] 웹개발 종합반 - 5주차 매 주차 강의자료 시작에 PDF파일을 올려두었어요! teamsparta.notion.site > - server from flask import Flask, render_template, request, jsonify app = Flask(__name__) from pymongo import MongoClient import certifi ca = certifi.where() client = MongoClient('mongodb+srv://test:sparta@cluster0.l0equ.mongodb.net/Cluster0?retryWrites..

https://teamsparta.notion.site/4-0056714b522240a68f7c778237525282 [스파르타코딩클럽] 웹개발 종합반 - 4주차 매 주차 강의자료 시작에 PDF파일을 올려두었어요! teamsparta.notion.site 1. Make API, using Flask framework. 2. Make API and connect to clients. from flask import Flask app = Flask(__name__) @app.route('/') def home(): return 'This is Home!' if __name__ == '__main__': app.run('0.0.0.0',port=5000,debug=True) @app.route('/test',..