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

시각화Permalink 라이브러리 import import matplotlib.pyplot as plt %matplotlib inline Bar Chart df[’gender’].value_counts().plot(kind=’bar’) Object 컬럼 하나씩 가져와서 Bar 차트 그리기 object_list = df.select_dtypes('object').columns.values for col in object_list: df[col].value_counts().plot(kind='bar') plt.title(col) plt.show() Histgram import seaborn as sns sns.histplot(data=df, x=’tenure’, hue=’Churn’) 곡선 히스토그램 : s..
필요 라이브러리 임포트 import numpy as np import pandas as pd #파일 읽어오기 df = pd.read_csv(’data_v1.csv’) #탐색적 데이터 분석 #상위 디폴트 5개 : df.head() #하위 디폴트 5개 : df.tail() #자료구조 파악 : df.info() #데이터 인덱스 : df.index #데이터 컬럼명 : df.columns #데이터 Values : df.values #Null 데이터 확인 : df.isnull().sum() #통계 정보 : df.describe() #데이터 전처리 #자료 구조 파악 info 사용(Row, column, Not-null, type) #customerID는 필요 없으니 삭제 df.drop(’customerID’, axi..

Events | jQuery API Documentation Attach a handler to an event for the elements. Bind an event handler to the “blur” JavaScript event, or trigger that event on an element. Bind an event handler to the “change” JavaScript event, or trigger that event on an element. Bind an event han api.jquery.com

JQuery의 selector는 tag, id, class등을 선택하는데 사용된다. - 버튼 클릭시 p tag 숨기기 - 버튼을 누르면 test라는 id를 가진 것을 숨기기 - id를 select할 땐, #을 사용한다. - 전부다 선택하기: * - 현재의 element 선택: this - p이고 class가 intro인 것 선택 - 첫 p element를 선택 - ul의 첫 li를 선택 - ul의 모든 첫li를 선택 - href를 다 선택 (하이퍼 레퍼런스) - target이 _blank이 아닌 것을 선택 (_blank: 새창열기) - 모든 버튼 선택 - table에서 짝수 선택 - table에서 홀수 선택

jQuery What is jQuery? jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. jquery.com

package com.example.newsAnalysis.service; import com.example.newsAnalysis.mapper.CollectionMapper; import com.example.newsAnalysis.model.CollectionInfoVO; import com.example.newsAnalysis.model.CollectionStatusVO; import com.example.newsAnalysis.model.InputVO; import com.github.pagehelper.Page; import com.github.pagehelper.PageHelper; import org.springframework.beans.factory.annotation.Autowired;..

초기 설정: 전체 목록을 가지고 오는 것을 구현해 놓는다. 1. gradle에 dependency 추가 // application.properties #paging pagehelper.helper-dialect=postgresql pagehelper.reasonable=true pagehelper.support-methods-arguments=true 2. controller or service 에서 paging적용 package com.example.newsAnalysis.service; @Service public class CollectionDataService { @Autowired CollectionMapper mapper; public List dataStatus(InputVO inputVO)..

REST(REpresentational State Transfer) : 분산 환경 아키텍쳐 /다양한 시스템 간의 통신 / 자원에 식별자 부여 / HTTP Method 식별자(URI)가 부여된 자원정보를 표준화된 HTTP 메서드로 제어하는 소프트웨어 아키텍쳐 자원에 고유한 식별자를 부여하며 HTTP GET,POST,PUT,DELETE METHOD를 이용해 제어한다 특징 1. 웹에 존재하는 모든 자원에 고유한 URI(통합자원식별자:Uniform Resource Identifier)를 부여해 활용 HTTP GET(조회) , POST(생성) , PUT(수정), DELELTE(삭제) Method를 통해 제어 2. "다양한 클라이언트"에게 서비스를 제공, 클라이언트와 서버 역할의 명확한 분리가 가능. -> ..

**Spring + Tiles 연동** Tiles : 웹페이지 템플릿을 위한 프레임워크 반복적으로 jsp include or jstl c import로 처리되었던 view layout을 효과적으로 개발하고 유지보수하기 위한 프레임워크 **Spring + Tiles 연동** Tiles : 웹페이지 템플릿을 위한 프레임워크 반복적으로 jsp include or jstl c import로 처리되었던 view layout을 효과적으로 개발하고 유지보수하기 위한 프레임워크 **tiles 적용단계** 1. Maven : pom.xml tiles dependency 추가 org.apache.tiles tiles-jsp 3.0.3 org.apache.tiles tiles-core 3.0.3 2. template j..