Skip to content

Instantly share code, notes, and snippets.

@AI-MOO
Last active June 24, 2022 13:47
Show Gist options
  • Save AI-MOO/d5e420ddc022c5fb6d27408c1e8cebb4 to your computer and use it in GitHub Desktop.
Save AI-MOO/d5e420ddc022c5fb6d27408c1e8cebb4 to your computer and use it in GitHub Desktop.
# pandas استدعاء مكتبة
import pandas as pd
from IPython.display import display
# سحب البيانات واستعراضها على هيئة إطار بيانات
diamonds = pd.read_csv('Datasets/diamonds.csv')
# عرض إطار البيانات
display(diamonds.head())
# الحصول على معلومات إطار البيانات
print(diamonds.shape)
print(diamonds.info())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment