Major- (863) 썸네일형 리스트형 [에러잡기] UnicodeDecodeError가 뜰 때 데이터 불러오기 중 UnicodeDecodeError이 뜬다면 인코딩 설정을 해야한다. encoding="euc_kr" [빅데이터 분석 프로젝트] 마크다운으로 팁 데이터 분석 보고서 작성하기 -Part 1 팁 데이터 분석¶ 팁 데이터를 이용해 데이터 보기 실습¶ 데이터 분석 순서¶ 데이터 백업 데이터 보기 [파생변수 만들기] 데이터 클린징 범주형 분석 방법¶ 빈도분석 교차분석 In [4]: #라이브러리 불러오기 import pandas as pd import seaborn as sns In [5]: #데이터 불러오기 tips=sns.load_dataset("tips") #팁 데이터 In [6]: #데이터 보기 tips Out[6]: total_bill tip sex smoker day time size 0 16.99 1.01 Female No Sun Dinner 2 1 10.34 1.66 Male No Sun Dinner 3 2 21.01 3.50 Male No Sun Dinner 3 3 23.68 3.3.. [웹프로그래밍 실습] 2. 월드와이드웹과 HTML 1-1) 웹페이지 요청하기와 소스 보기 1-2) HTML 기본문서 작성과 실행하기 example 1-2 example 1-2 2-1) 제목과 문단 태그 활용 example 2-1 html example hello world hello world hello world hello world hello world hello world 2-2) 텍스트 관련 태그 활용 bold text strong text italic text emphasized text mark text small text deleted text inserted text This is superscript text This is subscript text 2-3) 목록 만들기 Unordered List Coffee Tea Milk Ordere.. [C++ 실습] 4장-07. 포인터와 메모리 해제 #include using namespace std; int main() { int donuts = 6; //4바이트 자료형 double cups = 4.5; //8바이트 자료형 cout [C++ 실습] 4장-04. 구조체 #include using namespace std; struct inflatable { char name[20]; float volume; double price; }; int main() { inflatable guest { "Glorious Gloria", 1.88, 29.99 }; inflatable pal { "Audacious Arthur", 3.12, 32.99 }; cout [C++ 실습] 4장-03. String 클래스 #include #include using namespace std; int main() { char charr1[20]; char charr2[20] = "jaguar"; string str1; string str2 = "panther"; cout > charr1; cout > str1; cout [C++ 실습] 4장-02. 문자열 #include using namespace std; int main() { const int Size = 15; char name1[Size]; char name2[Size] = "C++owboy"; cout [C++ 실습] 4장-01. 배열 #include using namespace std; int main() { int yams[3]; yams[0] = 7; yams[1] = 8; yams[2] = 6; int yamcosts[3] = { 200, 300, 50 }; cout 이전 1 ··· 94 95 96 97 98 99 100 ··· 108 다음