Skip to content

Instantly share code, notes, and snippets.

@AI-MOO
Last active June 24, 2022 19:44
Show Gist options
  • Save AI-MOO/35d44ea3c148301e642ef29b910359ef to your computer and use it in GitHub Desktop.
Save AI-MOO/35d44ea3c148301e642ef29b910359ef to your computer and use it in GitHub Desktop.
# التجزئة من خلال اختار عمود واحد فقط (سمة)
cut = diamonds["cut"]
# عرض الاجتزاء
display(cut.head(7))
# فاصل
print(20 * "---")
# التجزئة من خلال اختيار أكثر من عمود (عدة سمات)
multiple_attributes = diamonds[["cut", "clarity", "color"]]
# عرض الاجتزاء
display(multiple_attributes.head(7))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment