Tutorial 9- Python Pandas Tutorials In Hindi- Dataframes, Series And Dataframes Operation-Part 1

  Рет қаралды 106,798

Krish Naik Hindi

Krish Naik Hindi

Күн бұрын

Пікірлер: 111
@AdityaBonkinpelliwar
@AdityaBonkinpelliwar Жыл бұрын
Really thankful to you Krish. I am transitioning my career towards Data field, being with Python experience , your videos helping me a lot to understand these useful concepts. The way you explain is really awesome. This is really a great work you are doing. GBU
@GhulamRaza-u5k
@GhulamRaza-u5k 6 ай бұрын
indexing assignment to get the col 1 and col 4 we can use these two steps to get the desire outcome 1 df.iloc[:,0::3] 2 df[["Column1","Column4"]] by using these two steps we can easily get the desire outcome By the way i really enjoy learning from your videos its very informative and have learned alot
@hritavsinghsolanki8893
@hritavsinghsolanki8893 Жыл бұрын
00:01 Introduction to Python Pandas 02:26 Pandas simplifies handling data in Python 06:43 Converting data to a dataframe in Python Pandas 09:13 Creating and viewing dataframes in Python Pandas 14:14 Understanding the indexing and data manipulation techniques in Pandas 16:35 The difference between Dataframes and Series in Pandas 20:28 Understanding the indexing technique using row and column index numbers 22:51 Introduction to basic operations in Pandas 27:46 Using Pandas to perform various data operations 29:48 Understanding unique values in a column.
@vinaygairola6855
@vinaygairola6855 10 ай бұрын
thank you bhai
@SpecialIdeasPreetiV
@SpecialIdeasPreetiV 2 ай бұрын
Amazing tutorial.. everything is cleared in one go. Thankyou for such a useful video
@HeyKaran-ir5mm
@HeyKaran-ir5mm Жыл бұрын
thank you, sir... for this indirect help. and congrats for your great work. 🙏🙏👍
@MithileshKumar-tm9yl
@MithileshKumar-tm9yl Жыл бұрын
Respected sir.i have read carefully your present videos.. I hope this video will be very helpful in our kvs examination...
@akhandpratap__
@akhandpratap__ 10 ай бұрын
What is kvs exam?
@comingtomorrow
@comingtomorrow 2 жыл бұрын
00:22:56 - cream is chessy and question is very easy , answer = df.iloc[0:5,0:4:3] .
@saumilgupta2383
@saumilgupta2383 Жыл бұрын
pura column hi aa rha hai to rowindex columnindex ki kya jrurt hai sidha hi df[["Column1","Column4"]] kr do
@awkumyoungstar2473
@awkumyoungstar2473 Жыл бұрын
In this code, iloc[:, [0, 3]] selects all rows (:) and the columns at positions 0 and 3 (which correspond to "col1" and "col4"). The resulting DataFrame, selected_columns, will contain only these two columns.
@DanishKhan-mp1tz
@DanishKhan-mp1tz Жыл бұрын
Thanku brother 😊
@akashchaudhary9925
@akashchaudhary9925 8 ай бұрын
try this iloc[:,::3]
@proud_indian0161
@proud_indian0161 9 ай бұрын
nice explanation, before I was really confused between these three indexing ways.
@AnuragSharma-vi5cv
@AnuragSharma-vi5cv 2 жыл бұрын
Thanks, Krish liked the video and the concepts you taught keep doing it
@vishalpal7968
@vishalpal7968 Жыл бұрын
Rely thankful krish I'm transforming our career towards data filed it's videos help me going to Data Analytics position.
@zonegaming3406
@zonegaming3406 5 ай бұрын
bro help me plz guide me 🙏
@RixwanKhan
@RixwanKhan 2 жыл бұрын
Bhai k bolna and dikhna bilkul Qaaleen bhaiya jesa hai :P Respect from Pakistan
@codewithpranoy
@codewithpranoy Жыл бұрын
Pakistan is now Bhikaristan 😂
@udaybhanchauhan3582
@udaybhanchauhan3582 2 жыл бұрын
Sb clear kr diya esi hi video search kr rha tha thanks
@sachinkale4544
@sachinkale4544 2 ай бұрын
thanksfull..very informational vedio🙏
@sidnoga
@sidnoga 2 жыл бұрын
I really like the way you teach...
@MrAd540
@MrAd540 Жыл бұрын
Superb Video.Thank you so much for making the video..Kindly complete the full python video.
@aniksamaddar1088
@aniksamaddar1088 Жыл бұрын
And Thanks your videos are absolutely great .
@easydatascience2508
@easydatascience2508 Жыл бұрын
Hei, bro, you can watch mine too. The playlists for Python and R provide most of the fundamentals. And you can find the link to source files in video description.
@jeekakrishna
@jeekakrishna 2 жыл бұрын
This is useful. Sir ek video matplotlib par bhi
@amanagarwal721
@amanagarwal721 9 ай бұрын
Thankyou so much brother😊💯
@razanaeem7491
@razanaeem7491 Жыл бұрын
What code i would write if i want to sum enrolled number of trainees in my data filtered data class status = complete and contractual trainees class status = cancelled and completed and show it college wise number
@SaurabhSingh-sy1pe
@SaurabhSingh-sy1pe 6 ай бұрын
@17:04 type(df['column1']) type(df[['column2','column4']]) in both cases output is dataframe
@harshGupta0103
@harshGupta0103 8 ай бұрын
My Table : Column1 Column2 Column3 Column4 Column5 Row 1 0 1 2 3 4 Row 2 5 6 7 8 9 Row 3 10 11 12 13 14 Row 4 15 16 17 18 19 Row 5 20 21 22 23 24 Row 6 25 26 27 28 29 Row 7 30 31 32 33 34 Row 8 35 36 37 38 39 Row 9 40 41 42 43 44 Row 10 45 46 47 48 49 1st way : df[['Column1','Column5']] output : Column1 Column5 Row 1 0 4 Row 2 5 9 Row 3 10 14 Row 4 15 19 Row 5 20 24 Row 6 25 29 Row 7 30 34 Row 8 35 39 Row 9 40 44 Row 10 45 49 2nd way : df.iloc[:,0:5:4] output : Column1 Column5 Row 1 0 4 Row 2 5 9 Row 3 10 14 Row 4 15 19 Row 5 20 24 Row 6 25 29 Row 7 30 34 Row 8 35 39 Row 9 40 44 Row 10 45 49
@ankeshkumar3205
@ankeshkumar3205 2 жыл бұрын
Thanks sir , This is very useful.
@world_news261
@world_news261 Жыл бұрын
Great bhai ❤❤
@dilipinamdar5523
@dilipinamdar5523 2 жыл бұрын
Thanks, Krish
@Vaishali_kitchencorner
@Vaishali_kitchencorner 3 ай бұрын
df.iloc[0:1,0::4] is the answer for the indexing
@apurbakumarmajumder9478
@apurbakumarmajumder9478 2 жыл бұрын
thank you bhaiya for your video
@DeepakSharma-sl5et
@DeepakSharma-sl5et Жыл бұрын
Hii sir, actually when I started my pandas library and import pandas and try. to create dataframe it show pandas has no attribute of dataframe.. What can I do now??...
@DeepakSharma-sl5et
@DeepakSharma-sl5et Жыл бұрын
Please anyone help me...
@adityatikoji1317
@adityatikoji1317 Жыл бұрын
@@DeepakSharma-sl5et you need to pass the data as krishan sir passes at starting of the video 0:30 go through that again other wise copy this snippet and try to paste df = (np.arange(1,20).reshape(5,4),index = ["r1","r2","r3","r4","r5"],columns=["c1","c2","c3","c4"])
@kaushik_1809
@kaushik_1809 8 ай бұрын
Thankyou sir
@naveenrajput-z4f
@naveenrajput-z4f Жыл бұрын
sir name df not defined error kse theek hota anyone please help me with this
@shashi_kamal_chakraborty
@shashi_kamal_chakraborty 2 жыл бұрын
Sir, "THANKS A " + "LOT "*3 !!!
@AbhishekRajput-bc6ux
@AbhishekRajput-bc6ux 5 ай бұрын
print(data.iloc[0:5,0::3])
@VikasSingh-nq5yx
@VikasSingh-nq5yx 2 жыл бұрын
In[ ] : df [[ "column1" , "column4" ]] Out[ ] : column1 Column4 Row1 0 3 Row2 4 7 Row3 8 11 Row4 12 15 Row5 16 19
@kumaraditya5426
@kumaraditya5426 2 жыл бұрын
Sir mere me type single wale ka pandas.core.frame.Dataframe aa raha hai
@__________________________6910
@__________________________6910 2 жыл бұрын
you said that kal hii mil jayega iske part 2 and 3. But 2 din hoo geyee, part 2 and part 3 nehi aye 😣
@dynamicacceleration
@dynamicacceleration Жыл бұрын
❤❤
@mukultiwari5204
@mukultiwari5204 Жыл бұрын
Can we skip the row also??
@adityakumartripathi8547
@adityakumartripathi8547 2 жыл бұрын
there are two ways to get all those numbers from column1 and column4 In[ ] : df[['column1,'column4]] and In[ ] : df.iloc[: , : : 3]
@aryapriyadarshanipradhan
@aryapriyadarshanipradhan Жыл бұрын
Hi can you please explain the slicing part
@worldcultureisdumb2658
@worldcultureisdumb2658 Жыл бұрын
Assignment answer is df.iloc[0:,0::3]
@sanichara_
@sanichara_ 2 жыл бұрын
Assignment= df.iloc[0:5, 0:4:3]
@VikasSingh-nq5yx
@VikasSingh-nq5yx 2 жыл бұрын
🤔🤔How?
@sanichara_
@sanichara_ 2 жыл бұрын
@@VikasSingh-nq5yx Please watch full video and try to execute :)
@VikasSingh-nq5yx
@VikasSingh-nq5yx 2 жыл бұрын
@@sanichara_ dekha but 0:4:3 ek sath likh skte hai kya
@maulikpanchal1373
@maulikpanchal1373 2 жыл бұрын
a=df.iloc[:2,:] b=df.iloc[3:,:] pd.concat([a, b], axis=0)
@shub_vyas
@shub_vyas Жыл бұрын
By Using index values : df.iloc[:,[0,3]] By Using loc : df.loc[:,['Column1','Column4']]
@mahboobsiddiqui1713
@mahboobsiddiqui1713 Жыл бұрын
Read Column : df[['col1','col4']]
@vishalpal7968
@vishalpal7968 Жыл бұрын
Sheet kha milegi
@awkumyoungstar2473
@awkumyoungstar2473 Жыл бұрын
Assigment done by Zeeshan khattak from abdul wali khan university of Mardan pakistan dp.iloc[:, [0, 3]]
@rechutambe8687
@rechutambe8687 Жыл бұрын
df[['Column1','Column4']]
@RanaHusnain-h1u
@RanaHusnain-h1u 4 ай бұрын
30:03 / 32:47 30:03 / 32:47 😂😂
@ashishvinod2193
@ashishvinod2193 Жыл бұрын
df[['Col1' , 'Col4']]
@ajay2347
@ajay2347 2 жыл бұрын
Ans : [:,::3]
@__________________________6910
@__________________________6910 2 жыл бұрын
noice
@VikasSingh-nq5yx
@VikasSingh-nq5yx 2 жыл бұрын
How bro? 🤔🤔
@KhushiKumari-wg7xw
@KhushiKumari-wg7xw 9 ай бұрын
[0:,3:] #answer
@priyapandey8951
@priyapandey8951 Жыл бұрын
Assignment: df.iloc[0:,::3] Column1 Column4 Row1 0 3 Row2 4 7 Row3 8 11 Row4 12 15 Row5 16 19
@programmer1305
@programmer1305 2 жыл бұрын
df.iloc [:,1::4] Correct answer
@VikasSingh-nq5yx
@VikasSingh-nq5yx 2 жыл бұрын
Can you teach me please double colon :: use?
@mithunmahato309
@mithunmahato309 2 жыл бұрын
Start : end : step size I think .. plz correct me if wrong... I am learning programming in python
@VikasSingh-nq5yx
@VikasSingh-nq5yx 2 жыл бұрын
@@mithunmahato309 it's right 👌
@VikasSingh-nq5yx
@VikasSingh-nq5yx 2 жыл бұрын
@@mithunmahato309 mithun you on Instagram?
@mohitujjain6562
@mohitujjain6562 2 жыл бұрын
df.iloc[:,[0,3]] Correct ans5
@umangsharma563
@umangsharma563 Жыл бұрын
df=pd.DataFrame(data=np.arange(0,20).reshape(5,4),index=["Row1","Row2","Row3","Row4","Row5"],columns=["columns1", "columns2", "columns3", "columns4"]) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) Cell In[65], line 1 ----> 1 df=pd.DataFrame(data=np.arange(0,20).reshape(5,4),index=["Row1","Row2","Row3","Row4","Row5"],columns=["columns1", 2 "columns2", 3 "columns3", 4 "columns4"]) TypeError: 'numpy.ndarray' object is not callable
@taimoorkhalid8054
@taimoorkhalid8054 5 ай бұрын
df5.iloc[:,[0,3]]
@abhisheksharma10600
@abhisheksharma10600 Жыл бұрын
df[["Column1","Column4"]]
@MikinjMistry
@MikinjMistry Жыл бұрын
df[['colum1','colum5']]
Tutorial 10- Pandas Read CSV File ,StringIO Tutorial In Hindi- Part 2
28:15
Python Pandas Tutorial : Series and DataFrame Basics #2
15:52
Programming Is Fun
Рет қаралды 59 М.
Ful Video ☝🏻☝🏻☝🏻
1:01
Arkeolog
Рет қаралды 14 МЛН
Numpy Tutorial in Hindi
56:18
CodeWithHarry
Рет қаралды 1 МЛН
Tutorial 8- Numpy Array Tutorial In Hindi
25:36
Krish Naik Hindi
Рет қаралды 74 М.
Python Pandas Tutorial in Hindi
1:05:24
CodeWithHarry
Рет қаралды 1,3 МЛН
Exploratory Data Analysis with Pandas Python
40:22
Rob Mulla
Рет қаралды 521 М.
Complete Python Pandas Data Science Tutorial! (2024 Updated Edition)
1:34:11
INTRODUCTION TO PANDAS (SERIES,DATAFRAME,PANEL) - PYTHON PROGRAMMING
16:20
Sundeep Saradhi Kanthety
Рет қаралды 160 М.
Pandas for Data Analysis In Python | Sagar Chouksey | Part-1
1:13:03
Coding With Sagar
Рет қаралды 10 М.
Deep Learning Indepth Tutorials In 5 Hours With Krish Naik
5:42:21
Krish Naik
Рет қаралды 380 М.