skip to Main Content

Laravel – Access variable in vue custom renderer

I am trying to implement te custom renderer of this Vue Word Cloud component in Laravel: https://github.com/SeregPie/VueWordCloud I first prepare my word array using php (working): @php $tags = AppModelsTag::withCount('songs')->orderBy("songs_count", "desc")->take(50)->get(); $words = ""; foreach($tags as $tag) { $count =…

VIEW QUESTION

Wordcloud is cropping text – Twitter API

I am using twitter API to generate sentiments. I am trying to generate a word-cloud based on tweets. Here is my code to generate a wordcloud wordcloud(clean.tweets, random.order=F,max.words=80, col=rainbow(50), scale=c(3.5,1)) Result for this: I also tried this: pal <- brewer.pal(8,"Dark2")…

VIEW QUESTION
Back To Top
Search