Naive Bayes Classifier: A Practical Tutorial with Scikit-Learn

Поділитися
Вставка
  • Опубліковано 6 жов 2024

КОМЕНТАРІ • 13

  • @RyanAndMattDataScience
    @RyanAndMattDataScience  2 місяці тому

    Hey guys I hope you enjoyed the video! If you did please subscribe to the channel!
    Join our Data Science Discord Here: discord.com/invite/F7dxbvHUhg
    If you want to watch a full course on Machine Learning check out Datacamp: datacamp.pxf.io/XYD7Qg
    Want to solve Python data interview questions: stratascratch.com/?via=ryan
    I'm also open to freelance data projects. Hit me up at ryannolandata@gmail.com
    *Both Datacamp and Stratascratch are affiliate links.

  • @akistsili8574
    @akistsili8574 Місяць тому

    good job my friend! Thank you. It will be very useful if we could use the same dataset you use. I can't find the dataset you work on.

  • @sushibooshi
    @sushibooshi 5 місяців тому

    Love your machine learning vids, keep it up!

  • @mohamednasser609
    @mohamednasser609 5 місяців тому

    Hello! Love your videos :)
    I can't find the source file 'Pearl_Jam_Tour2.csv' to walkthrough with you, can you add it to the description or in a comment?

  • @EhsanLash
    @EhsanLash 2 місяці тому +3

    import pandas as pd
    import numpy as np
    num_items = 41
    data = {
    'City Population': np.random.randint(10000, 1000000, num_items),
    'Continent': np.random.choice(['Asia', 'Europe', 'North America', 'South America'], num_items),
    'Venue Capacity': np.random.randint(500, 20000, num_items),
    'Day Of Week': np.random.choice(['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'], num_items),
    'Multiple Concerts': np.random.randint(0, 2, num_items),
    'Sold Out': np.random.randint(0, 2, num_items)
    }
    pd.DataFrame(data)

  • @misterx3321
    @misterx3321 Рік тому

    Awesome work!

  • @KL1_Khaled
    @KL1_Khaled 7 місяців тому

    Thank you 🌹

  • @JC_333
    @JC_333 Рік тому

    Like