تسجيل الدخول
تذكر
تسجيل
سؤال وإجابة
اطرح سؤالاً
اطرح سؤالاً
آخر الأسئلة في وسم dataframe
0
تصويتات
1
إجابة
Assume df is a DataFrame that has 4 columns, 'C1’, 'C2’, 'C3’, 'C4’, what is df[‘C1’]? A Series which is column ‘C1’ of df A DataFrame which is column ‘C1’ of df - مع الشرح
سُئل
ديسمبر 31، 2025
في تصنيف
أسئلة تعليمية
بواسطة
عبود
assume
dataframe
that
has
columns
what
series
which
column
0
تصويتات
1
إجابة
Assume df is a DataFrame that has 4 columns, 'C1’, 'C2’, 'C3’, 'C4’, what is df[‘C1’] - مع الشرح
سُئل
ديسمبر 31، 2025
في تصنيف
أسئلة تعليمية
بواسطة
عبود
assume
dataframe
that
has
columns
what
0
تصويتات
1
إجابة
Assume df is a DataFrame, in df.groupby(by=’column1’, as_index=False).agg({’column2’:’mean’}), what type of data is in column1? Categorical data Continuous data Both of the above 1 point 9. Question 9 What is median of the numbers in the list [1,2,3,4,5,6]? - مع الشرح
سُئل
ديسمبر 31، 2025
في تصنيف
أسئلة تعليمية
بواسطة
عبود
assume
dataframe
groupby
column1
as_index
false
agg
column2
mean
what
type
data
categorical
continuous
both
above
point
question
median
numbers
list
0
تصويتات
1
إجابة
True or False? Assume df is a dataframe with missing values. After executing df.fillna(10), there’s no missing values in df. - مع الشرح
سُئل
ديسمبر 31، 2025
في تصنيف
أسئلة تعليمية
بواسطة
عبود
true
false
assume
dataframe
with
missing
values
after
executing
fillna
theres
0
تصويتات
1
إجابة
Assume df is a dataframe that has a column "FirstName," which code correctly convert values in “FirstName” column to all uppercase? df[“FirstName”] = df[“First Name”].str.upper() df.FirstName = df.FirstName.str.upper() df[“FirstName”].str.upper() df.FirstName.str.uppe - مع الشرح
سُئل
ديسمبر 31، 2025
في تصنيف
أسئلة تعليمية
بواسطة
عبود
assume
dataframe
that
has
column
firstname
which
code
correctly
convert
values
all
uppercase
first
name
str
upper
uppe
0
تصويتات
1
إجابة
Assume df is a dataframe that has a column "FirstName," which code correctly convert values in “FirstName” column to all uppercase - مع الشرح
سُئل
ديسمبر 31، 2025
في تصنيف
أسئلة تعليمية
بواسطة
عبود
assume
dataframe
that
has
column
firstname
which
code
correctly
convert
values
all
uppercase
0
تصويتات
1
إجابة
True or False? When constructing a regression formula for statsmodels ols using dataframe column names, there can’t be whitespaces in the column names - مع الشرح
سُئل
ديسمبر 31، 2025
في تصنيف
أسئلة تعليمية
بواسطة
عبود
true
false
when
constructing
regression
formula
for
statsmodels
ols
using
dataframe
column
names
there
cant
whitespaces
0
تصويتات
1
إجابة
Which Pandas function is used to read a csv file and load the data in the file to a DataFrame? to_pickle() to_csv() load_csv() read_csv() [تم الحل]
سُئل
نوفمبر 19، 2025
في تصنيف
أسئلة تعليمية
بواسطة
ابوعبدالله
which
pandas
function
used
read
csv
file
and
load
data
dataframe
to_pickle
to_csv
load_csv
read_csv
0
تصويتات
1
إجابة
Which Pandas function is used to read a csv file and load the data in the file to a DataFrame [تم الحل]
سُئل
نوفمبر 19، 2025
في تصنيف
أسئلة تعليمية
بواسطة
ابوعبدالله
which
pandas
function
used
read
csv
file
and
load
data
dataframe
0
تصويتات
1
إجابة
Assume df is a DataFrame that has columns ‘Name’ and 'Age,’ which code selects all rows in df that have Age greater than 20 and less than 30? df[(df.Age>20) & (df.Age<30)] df[df.Age>20 & df.Age<30] Both of the above None of the above [تم الحل]
سُئل
نوفمبر 19، 2025
في تصنيف
أسئلة تعليمية
بواسطة
ابوعبدالله
assume
dataframe
that
has
columns
name
and
age
which
code
selects
all
rows
have
greater
than
less
both
above
none
0
تصويتات
1
إجابة
Assume df is a DataFrame that has columns ‘Name’ and 'Age,’ which code selects all rows in df that have Age greater than 20 and less than 30 [تم الحل]
سُئل
نوفمبر 19، 2025
في تصنيف
أسئلة تعليمية
بواسطة
ابوعبدالله
assume
dataframe
that
has
columns
name
and
age
which
code
selects
all
rows
have
greater
than
less
0
تصويتات
1
إجابة
Assume df is a DataFrame, in df.groupby(by=’column1’, as_index=False).agg({’column2’:’mean’}), what type of data is in column1? Categorical data Continuous data Both of the above [تم الحل]
سُئل
نوفمبر 18، 2025
في تصنيف
أسئلة تعليمية
بواسطة
ابوعبدالله
assume
dataframe
groupby
column1
as_index
false
agg
column2
mean
what
type
data
categorical
continuous
both
above
0
تصويتات
1
إجابة
Assume df is a DataFrame, in df.groupby(by=’column1’, as_index=False).agg({’column2’:’mean’}), what type of data is in column1 [تم الحل]
سُئل
نوفمبر 18، 2025
في تصنيف
أسئلة تعليمية
بواسطة
ابوعبدالله
assume
dataframe
groupby
column1
as_index
false
agg
column2
mean
what
type
data
0
تصويتات
1
إجابة
Assume df is a DataFrame that has columns ‘Name’ and 'Age,’ what data type is df[[‘Age’]]? Series DataFrame list numpy array [تم الحل]
سُئل
نوفمبر 18، 2025
في تصنيف
أسئلة تعليمية
بواسطة
ابوعبدالله
assume
dataframe
that
has
columns
name
and
age
what
data
type
series
list
numpy
array
0
تصويتات
1
إجابة
Assume df is a DataFrame that has columns ‘Name’ and 'Age,’ what data type is df[[‘Age’]] [تم الحل]
سُئل
نوفمبر 18، 2025
في تصنيف
أسئلة تعليمية
بواسطة
ابوعبدالله
assume
dataframe
that
has
columns
name
and
age
what
data
type
0
تصويتات
1
إجابة
Which DataFrame property is used to slice a dataframe with implicit indexes? loc iloc 1 [تم الحل]
سُئل
نوفمبر 18، 2025
في تصنيف
أسئلة تعليمية
بواسطة
ابوعبدالله
which
dataframe
property
used
slice
with
implicit
indexes
loc
iloc
0
تصويتات
1
إجابة
Which DataFrame property is used to slice a dataframe with implicit indexes [تم الحل]
سُئل
نوفمبر 18، 2025
في تصنيف
أسئلة تعليمية
بواسطة
ابوعبدالله
which
dataframe
property
used
slice
with
implicit
indexes
0
تصويتات
1
إجابة
Which Pandas DataFrame function is used to print a concise summary of the DataFrame? info() describe() summary() type [تم الحل]
سُئل
نوفمبر 18، 2025
في تصنيف
أسئلة تعليمية
بواسطة
ابوعبدالله
which
pandas
dataframe
function
used
print
concise
summary
info
describe
type
0
تصويتات
1
إجابة
Which Pandas DataFrame function is used to print a concise summary of the DataFrame [تم الحل]
سُئل
نوفمبر 18، 2025
في تصنيف
أسئلة تعليمية
بواسطة
ابوعبدالله
which
pandas
dataframe
function
used
print
concise
summary
0
تصويتات
1
إجابة
Assuming df is a DataFrame, which code prints last 5 rows of the DataFrame? df.head(5) df.tail(5) df.sample(5) [تم الحل]
سُئل
أكتوبر 11، 2025
في تصنيف
أسئلة تعليمية
بواسطة
ابوعبدالله
assuming
dataframe
which
code
prints
last
rows
head
tail
sample
صفحة:
1
2
التالي »
مرحباً بك في بوابة الإجابات ، المصدر الرائد للتعليم والمساعدة في حل الأسئلة والكتب الدراسية، نحن هنا لدعمك في تحقيق أعلى مستويات التعليم والتفوق الأكاديمي، نهدف إلى توفير إجابات شاملة لسؤالك
التصنيفات
جميع التصنيفات
أسئلة تعليمية
(202ألف)
مكتبة الإجابات
...