일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ELASTIC
- zip 암호화
- sort
- licence delete curl
- docker
- aggs
- 900gle
- TensorFlow
- Python
- matplotlib
- Java
- license delete
- 차트
- Kafka
- aggregation
- zip 파일 암호화
- 파이썬
- plugin
- Elasticsearch
- token filter test
- MySQL
- high level client
- Mac
- flask
- API
- Test
- springboot
- query
- License
- analyzer test
- Today
- Total
목록분류 전체보기 (487)
개발잡부

7.15.0 이후로 안나온다는건가.. bulid.gradle 디펜던시 추가 def elasticsearchVersion = '7.12.1' // https://mvnrepository.com/artifact/org.elasticsearch.client/elasticsearch-rest-high-level-client compile group: 'org.elasticsearch.client', name: 'elasticsearch-rest-high-level-client', version: elasticsearchVersion // https://mvnrepository.com/artifact/org.elasticsearch.client/elasticsearch-rest-client compile grou..

개발환경 Mac OS java 1.8 maven (plugin) elastic stack 7.12.1 (es, kibana)- docker compose 애널라이저 구조가 이렇단 말이지.. 애널라이저를 만들고 토크나이저에 edge_ngram 넣고 커스텀 플러그인 kr-danalyzer (korean doo analyzer) aka. KDA 를 설치해서 토큰 필터 적용, 필드에 맵핑시켜본다. Analyzer repository https://github.com/900gle/kr-danalyzer GitHub - 900gle/kr-danalyzer: doo analyzer for korean doo analyzer for korean. Contribute to 900gle/kr-danalyzer develo..
GET doo/_search { "query": { "bool": { "should": [ { "fuzzy": { "name.keyword": { "value": "나이키 조단", "fuzziness": 1 } } }, { "prefix": { "name.keyword": { "value": "나이키 조단" } } } ] } } } GET doo/_search { "query": { "match_phrase_prefix": { "name": "나이키 집업" } } }
https://github.com/900gle/image-vector.git GitHub - 900gle/image-vector Contribute to 900gle/image-vector development by creating an account on GitHub. github.com 가상환경 #가상환경 목록확인 conda info --envs #가상환경 생성 conda create --name "image" python="3.7" #가상환경 실행 conda activate image #모듈 설치 pip install -r require.txt #실행 python src/ImageVector.py

선으로 된것들 총집합 관련글 15번 까지 반영 https://wikidocs.net/92094 15. Matplotlib 수평선/수직선 표시하기  그래프의 특정 위치에 수직선/수평선을 표시하기 위해서 ** ... wikidocs.net 코드 1 import matplotlib.pyplot as plt import numpy as np x = np.arange(0, 4, 0.5) plt.plot(x, x + 1, 'bo' ,label='x1') plt.plot(x, x**2 - 4, 'g--', label='x2') plt.plot(x, -2*x + 3, 'r:', label='x3') plt.xla..

축범위 지정하기 코드 1 import matplotlib.pyplot as plt plt.plot([1, 2, 3, 4], [2, 3, 5, 10]) plt.xlabel('X-Axis') plt.ylabel('Y-Axis') plt.xlim([0, 5]) # X축의 범위: [xmin, xmax] plt.ylim([0, 20]) # Y축의 범위: [ymin, ymax] plt.show() # X축의 범위: [xmin, xmax] # Y축의 범위: [ymin, ymax] plt.xlim([0, 5]) plt.ylim([0, 15]) # X, Y축의 범위: [xmin, xmax, ymin, ymax] plt.axis([0, 5, 0, 20]) https://wikidocs.net/92083

코드 1 import matplotlib.pyplot as plt plt.plot([1, 2, 3, 4]) plt.show() 결과 #실행 python src/Chart.py 기본 그래프 음.. 음.. 스타일지정 코드 2 import matplotlib.pyplot as plt #그리고 plt.plot([1, 2, 3, 4], [1, 4, 9, 16], 'ro') plt.axis([0, 6, 0, 20]) #보여준다 plt.show() 포맷 문자열 ‘ro’는 빨간색 (‘red’)의 원형 (‘o’) ‘b-‘는 파란색 (‘blue’)의 실선 (‘-‘) 정리가 필요하군.. matplotlib.pyplot 모듈의 axis() 함수를 이용해서 축의 범위 [xmin, xmax, ymin, ymax]를 지정 여러 개..