Ejemplo n.º 1
0
        public IEnumerable <Tag> CreateTagsCloud(IEnumerable <string> words)
        {
            var interestingWords = WordHandler.NormalizeAndExcludeBoringWords(words);
            var readyTags        = WordConverter.ConvertToTags(interestingWords)
                                   .Select(InsertTagInFrame)
                                   .OrderByDescending(t => t.Frequency);

            Layouter.Recreate();
            return(readyTags);
        }