this is very simple and straight to the point. I enjoyed every bit of it. Its sufficient for me.
@2ednar7392 жыл бұрын
Love this one :) also the way you present is short an precise! Love it
@sadecesahin93662 жыл бұрын
When installing the Wordcloud module, I get the error "subprocess exited with error". What should I do
@Hotkife2 жыл бұрын
Great video! Found this very interesting
@vsrocha19892 жыл бұрын
Do you have any tip for reading the text file that is in Portuguese? many of the charachteres are lost such as "negócio" that becomes "negÃ"
@gbagba812 жыл бұрын
Hey Matt damon how are you. What does the intro song says? Every single time I repeat "it's a landscape" Thanks so much for being so human I'm curious of what it'd be like if you teached briefly tensorflow Thanks for everything 😊 cheers
@John-xi2im8 ай бұрын
superb idea!
@HailyTran-t5w10 ай бұрын
thanks! really helpful
@Abanmy2 жыл бұрын
0:45 i saw "garbage" up there
@rapjul2 жыл бұрын
Probably from phrases like “garage-collected language” or “garage collection”
@VashdyTV2 жыл бұрын
For those having trouble installing wordcloud (for me it failed building the wheel for the package), try using python 3.6 or lower. It appears that this package is not supported on higher version of python.
@parkjoyrene494111 ай бұрын
Ey can you please help me with creating a word cloud from excel, I'm a student with no prior knowledge in python or any programming languages, it would help me so much with my thesis
@maxparsons9431 Жыл бұрын
I keep getting a message name “WordCloud” is not defined. Any ideas?
@santoshkumargouda60332 жыл бұрын
please make a videos on MLops
@SanjeevKumar-nc2rt2 жыл бұрын
You can take one-neuron subscription
@santoshkumargouda60332 жыл бұрын
@@SanjeevKumar-nc2rt can you please send the link
@AryanRaj-ts6ud2 жыл бұрын
Nice sir👍
@arijanrahimic32102 жыл бұрын
Cool THX 😁
@markosth092 жыл бұрын
STOP_WORDS+{"support"} { } are also used for creating sets also another way would be STOP_WORDS+set(["support"])
@NeuralNine2 жыл бұрын
Thanks for the input!
@obed8182 жыл бұрын
Awesome !
@vsrocha19892 жыл бұрын
awesome!!
@massimobuccolieri85322 жыл бұрын
AWESOME
@s.aravindh62272 жыл бұрын
Super vedio
@varunshrivastava27062 жыл бұрын
Abe phle dekh to le 😂😂😂
@lisanalghaib Жыл бұрын
if someone've duplicate words, just put: collocations = False,
@parkjoyrene494111 ай бұрын
Can you please help me make a word cloud from excel sheet, I have no prior knowledge about programming languages and it would help me enormously in my thesis
@lisanalghaib11 ай бұрын
@@parkjoyrene4941 try this: import pandas as pd from wordcloud import WordCloud import matplotlib.pyplot as plt # Carregar a planilha Excel planilha = pd.read_excel('caminho/para/sua/planilha.xlsx') # Concatenar todas as palavras em uma única string texto = ' '.join(planilha['coluna_com_as_palavras'].astype(str)) # Criar a nuvem de palavras nuvem_palavras = WordCloud(width=800, height=400, background_color='white').generate(texto) # Exibir a nuvem de palavras plt.figure(figsize=(10, 8)) plt.imshow(nuvem_palavras, interpolation='bilinear') plt.axis('off') plt.show() Translate the portuguese words to english for u learning
@lisanalghaib11 ай бұрын
Put in chat gpt console: "Python command to analyze words in an Excel spreadsheet to generate a word cloud." Adjust for your use and input your rules
@lisanalghaib11 ай бұрын
@@parkjoyrene4941 eu tentei colar o código, mas o youtube bloqueou
@hassansharif318611 ай бұрын
1 plt.figure(figsize=(15,6)) ----> 2 plt.imshow(img) TypeError: 'WordCloud' object is not callable bro resolve this error
@Jeffery.M2 жыл бұрын
This is really awesome. Thanks for sharing. I also used this to save the image to file and it worked great: plt.savefig("test.png")