FUNTOCODE
FUNTOCODE
  • Видео 5
  • Просмотров 1 203
WORDCLOUD using python wordcloud library I saving wordcloud to desktop I Python Pandas I
This is a tutorial on how to make wordcloud using python´s wordcloud library. It is easy to follow and I hope you like it!
my code:
#libraries needed
import pandas as pd
from wordcloud import WordCloud, STOPWORDS
import matplotlib.pyplot as plt
df = pd.read_excel("your path")
text = " ".join(cat.split()[0] for cat in df.Car)
def plot_cloud(wordcloud):
# Set figure size
plt.figure(figsize=(15, 5))
# Display image
plt.imshow(wordcloud)
# No axis details
plt.axis("off");
wordcloud = WordCloud(width= 3000, height = 2000, background_color='black', colormap='plasma', collocations=False, stopwords = STOPWORDS).generate(text)
plot_cloud(wordcloud)
wordcloud.to_file("your_path/cloud.png")
If you have any ...
Просмотров: 264

Видео

BLENDER TUTORIAL I ROTATING CAMERA IN BLENDER I EASY TO FOLLOW I
Просмотров 333 года назад
This is a very easy and basic tutorial of how you can make a rotating camera in blender. Link to the blender I am using: www.blender.org/download/
Get weather using Python I Using pyowm librarby I Working with API I Easy and basic tutorial I
Просмотров 7183 года назад
This is a very easy and basic tutoria that show how you can use API to get weather data in python. We are using pyowm library. Comment below what videos you want me to make and any questions you have. Link to python spyder that I am using: www.spyder-ide.org/ Link to openweather website: openweathermap.org/ My code: from pyowm import OWM owm = OWM('your API key') mgr = owm.weather_manager() obs...
Basic Image Processing using Python I Image Processing using pillow library I Python anaconda I
Просмотров 853 года назад
In this video I am talking about very basic image processing. It is a simple tutorial on how to do easy image processing! Hope you like it! Link to the image: en.wikipedia.org/wiki/Lenna Link to Python anaconda that I am using: www.spyder-ide.org/ My code: from PIL import Image import matplotlib.pyplot as plt image = Image.open('Your Image path') image.show() filter_image = image.convert('L') p...
Automating Whatsapp using python I Using pythons selenium library I Easy and quick tutorial I
Просмотров 1043 года назад
Easy tutorial on how to automate Whatsapp using Python´s selenium library! To download webdrivers: chrome: chromedriver.chromium.org/download firefox: www.mozilla.org/en-US/firefox/new/ For more info about driver.. read on this page: automationintesting.com/selenium/java/lessons/drivers.html Link to whatsapp web: web.whatsapp.com/ My code: from selenium import webdriver driver = webdriver.Chrom...

Комментарии

  • @mateomurillo4921
    @mateomurillo4921 Год назад

    Excelent, thanks!!!

  • @AbhaGupta
    @AbhaGupta 2 года назад

    Very well explained...

  • @PerezTheDev
    @PerezTheDev 2 года назад

    A great well explained video!

  • @brunoriyuoficial
    @brunoriyuoficial 3 года назад

    Good work !!

  • @opiritetariah
    @opiritetariah 3 года назад

    Pls how can i retrieve forecast data for 5/7 days

    • @funtocode5904
      @funtocode5904 3 года назад

      Hey there, try this code and let me know if it worked import requests api_address = "api.openweathermap.org/data/2.5/forecast? appid=your api key" city = input("city name :") url=api_address+city j_data=requests.get(url).json() print(j_data)

  • @ravdeepkour5356
    @ravdeepkour5356 3 года назад

    Helpful video🙏🙏

  • @emmyemeraldwolf9598
    @emmyemeraldwolf9598 3 года назад

    Good job <3

  • @nikhileshshah361
    @nikhileshshah361 3 года назад

    keep it up the great work ❤❤

  • @ravdeepkour5356
    @ravdeepkour5356 3 года назад

    👍 help full video.