▶ Watch Entire Pandas Playlist ✅ Subscribe To My KZbin Channel: bit.ly/3wDKct8 bit.ly/2IGzvOR ▶ See More At: ✅ Join My Facebook Group: Codemy.com bit.ly/2GFmOBz ▶ Learn to Code at Codemy.com ✅ Buy a Codemy T-Shirt! Take $30 off with coupon code: youtube1 bit.ly/2VC9WUN ▶ Get The Code: bit.ly/3PXPJBt
@vladyslav-py-js-cs Жыл бұрын
Oh man you know that you're the best at this stuff!😁
@Codemycom Жыл бұрын
Ha thanks
@collinslife70212 жыл бұрын
Your super helpful with your videos, have learned quite a bit
@Codemycom2 жыл бұрын
Happy to hear it!
@FritsvanDoorn2 жыл бұрын
Hi, interesting. I noticed that the column wit the NaN had numbers with .0 while the other number not. What is the reason for this? Where does it come from? Thank you for explaining.
@Codemycom2 жыл бұрын
It just defaults to a float. You can change it by slapping a .astype(int) to the end...like: my_df.fillna(value=99).astype(int)
@LOSFOUFOUPАй бұрын
Thresh is not very well explained here, but in case someone casually pass through here and is wondering what the heck is up with that: 'thresh=N' means that at least N non-NaNs values have to be there to survive. SO 'thresh = N' ALONE (or with axis = 0 after) checks the ROWS: every row with at least N non-NaNs survive, others disappear. HOWEVER 'thresh = N, axis = 1' checks the COLUMNS: every column with at least N non-NaNs survive, the others disappear.
@charles_phruno10 ай бұрын
Is this playlist enough to start with pandas in ML
@Codemycom10 ай бұрын
We seem to be starting with Pandas in the videos...so... yeah