C# 으로 워드클라우드 생성하기 Sparc.TagCloud
https://github.com/chrisdavies/Sparc.TagCloud 사용법은 아래와 같이 심플 하다. var analyzer = new TagCloudAnalyzer(); // blogPosts is an IEnumerable, loaded from // the database or whatevz. var tags = analyzer.ComputeTagCloud(blogPosts); // Shuffle the tags, if you like for a random // display tags = tags.Shuffle(); 해당 프로젝트의 특징은 tag(word)를 간소화 해주는것이 특징이다. Example sentence lemmatized WORD ==> LEMMA On ==> on t..
AI/빅데이터
2021. 3. 31. 12:22