Reproducible research practices in magnetic resonance neuroimaging
A review informed by advanced language models
import numpy as np
import pandas as pd
import plotly.express as px
from scipy.stats import pearsonr, spearmanr
import math
import plotly.io as pio
import plotly.graph_objects as go
pio.renderers.default = "plotly_mimetype"
# Seed for reproducibility
np.random.seed(42)
# Number of datapoints for each scatter plot
n_points = 400
# Function to generate synthetic data for brain volume vs. cognitive performance
def generate_synthetic_data(volume_mean, volume_std, score_mean, score_std, correlation, n_points):
volume = np.random.normal(volume_mean, volume_std, n_points)
volume_jitter = np.random.normal(0, volume_std * 1.5, n_points) # Add jitter to volume
noise = np.random.normal(0, score_std * 20.5, n_points) # Increase noise for jitter in score
score = score_mean + correlation * (volume - volume_mean) + noise
return volume + volume_jitter, score
# Function to generate additional metrics
def generate_additional_metrics(volume, score, volume_std, score_std, n_points):
# Hypothetical Brain Density: Based on volume with added noise
density = volume / (volume_std * np.random.uniform(0.8, 1.2, n_points))
# Hypothetical Neural Efficiency: Positively correlated with score but with noise
efficiency = np.sin(score) / (score_std * np.random.uniform(20, 1.7, n_points))
return density, efficiency
# Generate synthetic data for 10 scatter plots
data_dict = {}
# Scatter plot 1: Hippocampus Volume vs. Memory Score
data_dict["Hippocampus_Memory"] = generate_synthetic_data(500, 6500, 50, 20, 0.25, n_points)
df_dict = {key: pd.DataFrame({'Volume': value[0], 'Score': value[1]}) for key, value in data_dict.items()}
# Apply additional metrics to all regions
for key, df in df_dict.items():
volume_std = np.std(df['Volume'])
score_std = np.std(df['Score'])
# Generate new metrics for Brain Density and Neural Efficiency
density, efficiency = generate_additional_metrics(df['Volume'], df['Score'], volume_std, score_std, n_points)
# Add the new metrics to the DataFrame
df['Density'] = density
df['Efficiency'] = efficiency
def plot_correlation(df_dict, key, x_col, y_col, title_prefix, color='blue', marker_size=10, marker_opacity=0.7):
df = df_dict[key]
# Calculate Spearman correlation
corr, _ = spearmanr(df[x_col], df[y_col])
# Create scatter plot with customized marker colors, size, and opacity
fig = px.scatter(
df,
x=x_col,
y=y_col,
title=f'{title_prefix} (Spearman: {corr:.2f})',
trendline='ols',
color_discrete_sequence=[color] # Custom marker color,
)
# Update marker style
fig.update_traces(marker=dict(size=marker_size, opacity=marker_opacity))
# Update figure layout
fig.update_layout(height=600)
return fig
alinx = [1.0, 0.9000000000000001, 0.8, 0.7, 0.6000000000000001, 0.5000000000000001]
aliny = [0.0, 0.17320508075688773, 0.34641016151377546, 0.5196152422706632, 0.6928203230275509, 0.8660254037844386]
fig = px.scatter(x=alinx, y=aliny, title='Alienarity index', labels={'x':'X-axis', 'y':'Y-axis'})
fig.update_traces(marker=dict(size=10, opacity=1))
fig.show()
Loading...
fig1 = plot_correlation(df_dict, "Hippocampus_Memory", 'Volume', 'Score', 'Hippocampus', color='blue', marker_size=10, marker_opacity=0.7)
fig1.show()
Loading...
fig2 = plot_correlation(df_dict, "Hippocampus_Memory", 'Density', 'Score', 'Hippocampus', color='red', marker_size=10, marker_opacity=0.7)
fig2.show()
Loading...
fig3 = plot_correlation(df_dict, "Hippocampus_Memory", 'Efficiency', 'Score', 'Hippocampus', color="green", marker_size=10, marker_opacity=0.7)
fig3.show()
Loading...