전체 글138 word cloud 긴어절 term aggregation하기 이전 글에서 word cloud fielddata=true를 하면 document를 world cloud에 사용할 수 있도록 term aggregaion가능하게 해준다. 하지만 내가 원하는 것은 ~~ United Kingdom 입력하면 내가 원하는건 term aggregation을 했을 때 United Kingdom 1개 인데 실제로 아래의 이미지인 term aggregation결과는 United 1개, Kingdom 1개의 결과가 나온다. United Kingdom각각 스페이스별로 term aggregation을 한다. term aggregation 은 es 자체에 저장된 단어들을 count해주므로 analyzer를 잘해서 es에 저장을 잘할 수 있도록 인덱스의 settings를 고민함. ngram은 .. 2022. 2. 28. [Elasticsearch]wordcloud 원하는대로 구현하기. 출처:https://discuss.elastic.co/t/kibana-word-cloud-on-text-field/250523/8 Kibana Word Cloud on Text Field Ah, I must have been confused. One final question. message doesn't show up in the kibana dropdown. I tried turning on fielddata but that didn't seem to work. Any idea on why it wouldn't appear in kibana? Thanks for all the help. Edit: i saw that the field discuss.elastic.co mapping을 text, key.. 2022. 2. 25. 범위별 라벨링 pandas #범위별 레이블링. #레이블링을 함. 1-3세면 baby, 3-7세면 children ..... raw_data['age_cat'] = pd.cut(raw_data['Age'], bins=[0, 3, 7, 15, 30, 60, 100], include_lowest=True, labels=['baby', 'children', 'teenage', 'young', 'adult', 'old']) 2022. 2. 24. 예제 따라하다가 발생한 에러 해결하기 ImportError: Pandas requires version '1.2.0' or newer of 'xlrd' (version '1.1.0' currently installed). ImportError: Pandas requires version '1.2.0' or newer of 'xlrd' (version '1.1.0' currently installed). !pip list !pip install xlrd 을 해주고 해당 에러난 코드 다시실행해도 안됨. !pip install xlrd==1.2.0 다시 xlrd version을 1.2.0으로 맞추고 실행하니 잘 되었다. 2022. 2. 18. 이전 1 ··· 24 25 26 27 28 29 30 ··· 35 다음