Infographic Insights: A Deep Dive into UK Divorce Rates by Island Territory
import pandas as pd

# Create a DataFrame from the given data
df = pd.DataFrame({
    'Location': ['England', 'Scotland', 'Wales', 'Jersey'],
    'Married': [0.0, 0.0, 16.7, 0.0],
    'Divorced': [25.0, 50.0, 33.3, 100.0],
    'Single': [66.7, 50.0, 66.7, 0.0]
})

# Print the DataFrame
print(df)

Last modified on 2025-03-14