일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 논문리뷰
- 설명의무
- update
- 카이제곱분포
- inner join
- 짝수
- 자연어 논문 리뷰
- Statistics
- 코딩테스트
- MySQL
- leetcode
- t분포
- SQL코테
- torch
- 자연어처리
- airflow
- CASE
- 자연어 논문
- nlp논문
- SQL 날짜 데이터
- GRU
- LSTM
- HackerRank
- sql
- Window Function
- sigmoid
- 그룹바이
- NLP
- 표준편차
- 서브쿼리
- Today
- Total
목록전체 글 (108)
HAZEL
이전 작성 글 더보기 2021.07.03 - [분류 전체보기] - [ React 01 ] React 설치 및 시작 , JSX 문법 , State 2021.07.04 - [분류 전체보기] - [ React 02 ] React Component 문법, 반복문 - Map, for, Props, input을 받아서 데이터처리, 옛날에 react 사용법 2021.07.05 - [분류 전체보기] - [ React 03 ] 부트스트랩 & React 쓰기, import / export 문법, Component 화 , 반복문 map 1. 라우트 초기 셋팅 법 1. 터미널에 npm install react-router-dom 설치 2. index.js 에 Router를 import 해주기 - APP에 Router 태그를 ..
1. 부트스트랩 & React 쓰기 : 부트스트랩은 css 를 편하게 해주는 아이다. React 에서 사용할 때는, 그냥 부트스트랩 홈페이지가 아닌, React 부트스트랩 홈페이지에 들어가야한다. https://react-bootstrap.github.io/ React-Bootstrap The most popular front-end framework, rebuilt for React. react-bootstrap.github.io 이곳에서 get start 를 누르면 사용할 수 있는 방법이 나온다. 1. terminal 창에서 , npm install react-bootstrap bootstrap@4.6.0 을 입력해준다. 2. css link 를 index.html 에 넣어준다. 3. css에서 필요..
1. Modal 창 만들기 - React Component 문법 : HTML을 한 단어로 줄여서 쓸 수 있는 방법 1) Component - Component 만드는 법 1. 함수를 만들고 이름을 짓는다. 2. 축약을 원하는 HTML을 넣는다. 3. 원하는 곳에서 을 적는다. .... ); } // 컨포넌트 만들기 function Modal(){ return( 제목 날씨 상세 내용 ) } - 컴포넌트 만들때의 주의사항. 1. 대문자로 시작해서 만든다. 소문자는 사용하지 않는다. 2. return() 안에 있는 것은 태그를 하나로 묶어야한다. 여러개의 태그가 나열되서는 안된다. - 만약 reuturn() 내부를 묶을 때 의미없는 div 를 사용하기 싫으면 를 사용한다. 3. 만드는 위치는 function ..
1. React 설치 및 시작 1 ) npx create-react-app blog vs code 의 terminal 창에 위의 코드를 입력해주면 설치가 됩니다. blog는 내가 만들고자하는 폴더 이름을 입력해주면 됩니다. 이것은 react 를 할수 있게 해주는 라이브러리가 담겨있는 것을 모두 설치할 수 있게 해주는 것입니다. 2) npm start 입력 이때, cd blog 로 blog ( 혹은 위에서 자신이 만든 폴더 ) 로 이동을 해준 다음에 npm start를 입력해주어야합니다. 그러면 crom 창이 새로 생기게 됩니다. 2. JSX 문법 : return 안에 html 같은 문법이 들어가있는 것을 의미합니다. jsx 문법의 특징 a. 태그에 class 주고싶다면, 을 입력해줌 b. 리액트에서 데이..
Chapter 01 : 객체 지향 프로그래밍 : 객체 지향 프로그래밍 ( oop ) 는 코드의 재사용 ,코드 중복 방지 등의 장점이 있다. 1. 객체지향적이지 않은, 날것으로 코딩을 하기 # 리스트 구조 student_names_list = ['Kim','Lee','Park'] student_numbers_list = [1,2,3] student_grades_list = [1,2,4] student_details_list = [ {'gender':'Male', 'score1':95 , 'score2' : 88}, {'gender':'FeMale', 'score1':77 , 'score2' : 88}, {'gender':'Male', 'score1':95 , 'score2' : 88}, ] # 삭제 del..
User - defined Function - Mysql 01. 기본 구조 CREATE FUNCTION '함수이름 function name' ('parameter name', 'datatype' ) RETURN '출력될 결과의 datatype' ( DETERMINISTIC ) BEGIN DECLARE 'variable name' 'datatype'; SET; RETURN ( Query ) / 'variabel name'; END -- 사용 방법 SELECT 'function name' (parameter) ( DETERMINISTIC ) : 은 NOT DETERMINISTIC 이 defalt 임. 인풋값은 똑같고, 아웃풋값이 호출할 때마다 같을때, DETERMINISTIC 을 적어주고, 아니면 defal..
Weather Observation Station 7 >> 문제 Query the list of CITY names ending with vowels (a, e, i, o, u) from STATION. Your result cannot contain duplicates. Input Format The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W is the western longitude. >> 기본적으로 푸는 방법 SELECT DISTINCT city FROM station WHERE city LIKE '%a' OR city LIKE '%e' OR city LIKE '%i' OR city L..
Weather Observation Station 6 >> 문제 Query the list of CITY names starting with vowels (i.e., a, e, i, o, or u) from STATION. Your result cannot contain duplicates. Input Format The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W is the western longitude. >> 기본적으로 푸는 방법 select DISTINCT city FROM station WHERE city LIKE 'a%' OR city LIKE 'e%' OR city LIKE 'i%..
185. Department Top Three Salaries >> 문제 The Employee table holds all employees. Every employee has an Id, and there is also a column for the department Id. +----+-------+--------+--------------+ | Id | Name | Salary | DepartmentId | +----+-------+--------+--------------+ | 1 | Joe | 85000 | 1 | | 2 | Henry | 80000 | 2 | | 3 | Sam | 60000 | 2 | | 4 | Max | 90000 | 1 | | 5 | Janet | 69000 | 1 | |..
Window function 01. window function 와 groupby : groupby 함수와 유사하다. 하지만, 원래 있던 값이 아니라, 새로운 값이 나와서 그룹을 묶어주게 된다. mysql> SELECT SUM(profit) AS total_profit FROM sales; +--------------+ | total_profit | +--------------+ | 7535 | +--------------+ mysql> SELECT country, SUM(profit) AS country_profit FROM sales GROUP BY country ORDER BY country; +---------+----------------+ | country | country_profit | +..