import pandas as pd
from sklearn.datasets import load_diabetes

# Load the diabetes dataset
diabetes = load_diabetes()

# Create a Pandas DataFrame with the data and feature names
df = pd.DataFrame(diabetes.data, columns=diabetes.feature_names)

# Print the first few rows of the DataFrame
print(df.head())