Estou fazendo um projeto usando python e seus vídeos são os melhores! Muito obrigado
@AnishKumar-jx4vn4 жыл бұрын
Your voice is too cute.... 😊😊
@AmulsAcademy4 жыл бұрын
Thank you so much 😀
@robishankardenre32695 жыл бұрын
Thank you 🙂🙏🇮🇳
@Goddu4 жыл бұрын
AttributeError: 'Series' object has no attribute 'itemsize' any idea? Please help... itemsize not working import pandas as pd import numpy as np d1=np.array([1,2,3,4,5]) s1=pd.Series(d1) print(s1.itemsize)
@daphnejyothi47954 жыл бұрын
s1 is a pandas object and doesn't have the same attributes as a numpy array. A series object of pandas doesn't have an itemsize attribute.
@Goddu4 жыл бұрын
Daphne Jyothi Thank you 🙂
@sainathvallampatla51355 жыл бұрын
Thank you 😊
@smiley37535 жыл бұрын
Mam can you please make a video to install anaconda and open CV..
@AmulsAcademy5 жыл бұрын
I will try :)
@eee_bangla4 жыл бұрын
tnk u mam
@AmulsAcademy4 жыл бұрын
Welcome :)
@ananyarastogi3236 Жыл бұрын
Plz explain flags in array with example
@sayidshayan76104 жыл бұрын
voice sweet as gulab jamun
@AmulsAcademy4 жыл бұрын
Haha Thank you :)
@sayidshayan76104 жыл бұрын
Are you a teacher at school?
@supratimbhattacharjee53244 жыл бұрын
how old are you?
@MINEDITZZ694 жыл бұрын
>>> f=np.array([[[1,2],[3,4],[5,6],[7,8]]]) >>> f array([[[1, 2], [3, 4], [5, 6], [7, 8]]]) >>> f.shape (1, 4, 2) Please tell me why 1 in the output(1,4,2)
@AmulsAcademy4 жыл бұрын
It is a 3d array. In the 3d array first dimension is, number 2d arrays. Here only one 2d array is present so first dimension is 1. [ [ [1,2], [3,4], [5,6], [7,8] ] ] :)
@MINEDITZZ694 жыл бұрын
@@AmulsAcademy Thank you. Thanks a lot for your quick response.