Тёмный
Ryan & Matt Data Science
Ryan & Matt Data Science
Ryan & Matt Data Science
Подписаться
This RU-vid channel serves as both a platform for sharing knowledge and a personal journey of continuous learning. With a commitment to growth, I aim to expand my skill set by publishing 2 to 3 new videos each week, delving into various aspects of data analytics/science and Artificial Intelligence. Join me on this exciting journey as we explore the endless possibilities of data together
Python Poisson Distribution (Numpy, Scipy)
18:35
19 часов назад
Python Law of Large Numbers (Numpy)
14:11
21 день назад
Python Covariance (Numpy, Pandas)
18:05
Месяц назад
Python Geometric Mean (SciPy)
11:58
Месяц назад
How to Fine-Tune OpenAI GPT-4o For FREE
58:01
Месяц назад
Python Harmonic Mean (SciPy)
10:24
Месяц назад
Python Quantiles (Numpy & Pandas)
11:24
Месяц назад
Python Z-Score (Numpy, SciPy, Pandas)
17:51
Месяц назад
Python Standard Deviation & Variance
18:07
Месяц назад
Langchain Pandas Dataframe Agents
15:49
Месяц назад
Master Reflexion Prompting (ChatGPT & Python)
21:48
2 месяца назад
Комментарии
@Naadiaajmal
@Naadiaajmal 23 часа назад
NameError: name 'df' is not defined <--- Keeps showing up when i reach 17 mins on the tutorial. my file name matches my code folder and chatgpt isnt very helpful. can someone pleaseee help
@RyanAndMattDataScience
@RyanAndMattDataScience 18 часов назад
Ask in our discord server
@Naadiaajmal
@Naadiaajmal 18 часов назад
@@RyanAndMattDataScience thank you. Please link it. I cant see it on your profile
@BreakoutCards
@BreakoutCards 18 часов назад
@@Naadiaajmalpinned comment
@Naadiaajmal
@Naadiaajmal 18 часов назад
@@BreakoutCards thanksss
@kimaudreymagan484
@kimaudreymagan484 2 дня назад
Thank you!
@RyanAndMattDataScience
@RyanAndMattDataScience День назад
No problem
@willmcandrew4069
@willmcandrew4069 3 дня назад
Great video great explanations and examples
@RyanAndMattDataScience
@RyanAndMattDataScience 3 дня назад
Thank you!
@lenka4662
@lenka4662 3 дня назад
Hi,I think the 28:00 question should concat the shipment Id and subid ?!😮
@AdityaSharma-f3x
@AdityaSharma-f3x 3 дня назад
thanks a lot for this project, learnt great knowledge (especially about stacked regressors and voting regressors) and how to filter out outliers and fill na values using description.txt and a little worldly experience/knowledge.
@RyanAndMattDataScience
@RyanAndMattDataScience 3 дня назад
Np make sure to join our discord!
@lenka4662
@lenka4662 3 дня назад
it fits for cheat list ❤
@SusanElliott-w5q
@SusanElliott-w5q 4 дня назад
so what if the lasso drop two features who can you tell which features it dropeed when you zip teh freatures and coeef back together???
@photonganglol2413
@photonganglol2413 4 дня назад
as someone who is new to AI/ML, maybe some more clear terminology defined would be helpful. A lot of resources call what you describe as 'Normalizing' as 'Scaling'. And what you call 'standardization' is referred to as 'Normalizing'. Just a little confusing but great video actually showing the difference between the 2.
@Patrick-l5h7r
@Patrick-l5h7r 5 дней назад
Thanks Ryan, great tutorial. I was pleasantly surprised that you knew the name of the great WI batsman, Sir Garry Sobers. Are you from the West Indies ?
@RyanAndMattDataScience
@RyanAndMattDataScience 4 дня назад
Nope I just collect cards and have a few of sobers
@Patrick-l5h7r
@Patrick-l5h7r 4 дня назад
That’s great. Card collecting can be financially rewarding !
@shi-onko4098
@shi-onko4098 7 дней назад
Came across this vid as a new python learner and tried to attempt it before watching. At first I spent far too long trying to manually create a decimal to binary converter, then finally found out about bin() and ended up with something fairly similar to your code, with a list of valid addends and a list of addends that sum to N. Then I realised that the minimum number of addends was simply the value of the largest digit in N, so if N=13254, the minimum number of addends was 5. The final function I came up with basically finds each addend by replacing the non-zero digits of (N - all previous addends). Although there's probably still room for improvement, my final code was: addends = [] N = int(input("Type a positive integer N: ")) while N > 0: next_addend = "" for digit in str(N): if digit != "0": next_addend += "1" else: next_addend += "0" addends.append(next_addend) N = N - int(next_addend) for _ in addends: print(_, end=" ") print(f" Output = {len(addends)}")
@usamaspeakscricket
@usamaspeakscricket 7 дней назад
Thanks buddy
@RyanAndMattDataScience
@RyanAndMattDataScience 6 дней назад
Np
@Abdi_World
@Abdi_World 7 дней назад
What ide are you using sir
@RyanAndMattDataScience
@RyanAndMattDataScience 6 дней назад
Colab
@RyanAndMattDataScience
@RyanAndMattDataScience 7 дней назад
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.
@RyanAndMattDataScience
@RyanAndMattDataScience 8 дней назад
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 Statistics 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.
@mohamedzrirak5884
@mohamedzrirak5884 9 дней назад
thank you👍
@RyanAndMattDataScience
@RyanAndMattDataScience 8 дней назад
No problem
@nemuccio1
@nemuccio1 10 дней назад
Hi, I can't find the simple_imputer.csv file. where can I download it? Thank you
@RyanAndMattDataScience
@RyanAndMattDataScience 11 дней назад
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 Statistics 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.
@Orokusaki1986
@Orokusaki1986 12 дней назад
quick question: does Kaggle give you a rating based on speed/efficiency? I'm wondering specifically about just importing the whole libraries.
@inaaahsings
@inaaahsings 12 дней назад
Thank you!!
@subhanjalpant8824
@subhanjalpant8824 12 дней назад
Where is the data????
@curiousworm1632
@curiousworm1632 20 часов назад
Github
@aniketshrikondawar6598
@aniketshrikondawar6598 13 дней назад
Please make sure all cells are visible on screen. Sometimes not able to view end of cell content.
@marianaparrinha7551
@marianaparrinha7551 15 дней назад
how to plot the linear regression for multidimentional data?
@marianaparrinha7551
@marianaparrinha7551 15 дней назад
bc we want to see the outliers
@RyanAndMattDataScience
@RyanAndMattDataScience 15 дней назад
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 Statistics 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.
@RyanAndMattDataScience
@RyanAndMattDataScience 15 дней назад
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 Statistics 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.
@RyanAndMattDataScience
@RyanAndMattDataScience 15 дней назад
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 Statistics 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.
@RyanAndMattDataScience
@RyanAndMattDataScience 15 дней назад
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 Statistics 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.
@RyanAndMattDataScience
@RyanAndMattDataScience 15 дней назад
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 AI 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.
@mukeshprajapati2825
@mukeshprajapati2825 17 дней назад
very good explanation keep continue
@navid7467
@navid7467 17 дней назад
New subscriber here! Thank you for your good work. Just a quick question. To extract events held in USA, since we know we are looking for the 3 letters between the 5th last and last as USA, couldn't we use this condition: (df['Event name'].str[-4:-1]=='USA')? I used it but my dataframe returns 26524 rows which I thought might be due to difference in the version of dataset. I also tried (df['Event name'].str.endswith("(USA)")) and got the same number of rows.
@epicmemesandanime329
@epicmemesandanime329 17 дней назад
at 3:01 why y=df["HOF"]?
@abiel237
@abiel237 17 дней назад
If the str and get methods does not work for you too use this "(df['Event name'].str.extract(r'\((.*?)\)') == 'USA')"
@SMHamid-vt6yy
@SMHamid-vt6yy 17 дней назад
import pandas as pd def sales_person(sales_person: pd.DataFrame, company: pd.DataFrame, orders: pd.DataFrame) -> pd.DataFrame: company=company.rename(columns={"name":"colour"}) df=orders.merge(company, on="com_id").merge(sales_person, on="sales_id") res=list(set(sales_person.name)-set(df[df.colour=="RED"].name)) return pd.DataFrame({'name':res}) This is a simpler solution for pandas any thoughts on this ?
@ДмитрийКолышницын-с2л
Cool!!!
@rinavw7321
@rinavw7321 19 дней назад
Hi, what does importance mean? with feature importance
@aryankarmhe
@aryankarmhe 20 дней назад
Text editor?
@arulkumaransendilvel6853
@arulkumaransendilvel6853 20 дней назад
what is difference between scaler.fit() and scaler.fit_transform() ⁉
@diegorojas9153
@diegorojas9153 20 дней назад
It took me a while to find this video you should add that this is for multi-categorical features too, thanks for sharing this great video!!!
@arulkumaransendilvel6853
@arulkumaransendilvel6853 20 дней назад
nice
@greattatsumaki3141
@greattatsumaki3141 21 день назад
Thank you very much.
@yyttommy2456
@yyttommy2456 22 дня назад
image = item[1:].values.reshape[28, 28].astype(np.uint8) TypeError: 'builtin_function_or_method' object is not subscriptable
@ДмитрийКолышницын-с2л
You're unreal man!!! Thanks!!!
@wiramahatvavirya3147
@wiramahatvavirya3147 23 дня назад
so it is similar to pd.getdummies() 🤔
@RyanAndMattDataScience
@RyanAndMattDataScience 23 дня назад
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 Statistics 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.
@ДмитрийКолышницын-с2л
We need more and more
@RyanAndMattDataScience
@RyanAndMattDataScience 23 дня назад
Haha I’m trying!
@yasminwael-pl5fv
@yasminwael-pl5fv 24 дня назад
thank you very much 💕
@MR_FUNNY_161
@MR_FUNNY_161 25 дней назад
Great work
@arulkumaransendilvel6853
@arulkumaransendilvel6853 25 дней назад
nice bro, great explanation 👍
@RyanAndMattDataScience
@RyanAndMattDataScience 25 дней назад
Ty
@TauvicRitter
@TauvicRitter 26 дней назад
It seems the key is extracting meaningful insights from the data. People tend to have better chances of survival when they can influence others, whether through fame, wealth, or emotional appeal. Relationships play a crucial role-having family, business connections, or friends can make a difference. For example, mothers with young children might also be at an advantage. Understanding social networks and assessing the relative importance of each connection could be a valuable strategy. One could enhance the analysis by researching each passenger individually, looking into their background and determining their social standing or wealth. Resources like "Who’s Who" provide details on annual income and social status. However, is this a valid method, or does it border on cheating? GENERAL COMPETITION RULES C. External Data. You may use data other than the Competition Data (“External Data”) to develop and test your Submissions. However, you will ensure the External Data is publicly available and equally accessible to use by all participants of the Competition for purposes of the competition at no cost to the other participants. The ability to use External Data under this Section 7.C (External Data) does not limit your other obligations under these Competition Rules, including but not limited to Section 11 (Winners Obligations).
@AmaRan31
@AmaRan31 26 дней назад
it was a very good training. Thank you for making this video. I have implemented the project myself and I am even thinking about moving forward.
@aadarshvelu2872
@aadarshvelu2872 27 дней назад
Hello Ryan, thanks for making LLM contents, The video was good! I request you to attach the notebook of each module please, I searched on your git & blogs, I couldn't find it! 🥲