The research investigates the effects of the GABAB receptor agonist baclofen on body weight and food intake in male C57B/10 mice. The study was conducted over 15 days, with mice receiving daily intraperitoneal injections of either saline or baclofen at doses of 4 mg/kg and 8 mg/kg.
Statistical analysis revealed significant effects of treatment on body weight:
The findings extend previous research in rats, indicating that baclofen can reduce body weight gain in mice without suppressing food intake. This supports the hypothesis that GABAB receptor agonists may decrease body weight by increasing metabolic rate.
import pandas as pd import matplotlib.pyplot as plt data = {'Treatment': ['Control', 'Baclofen 4 mg/kg', 'Baclofen 8 mg/kg'], 'Body Weight Change (g)': [0, -5, -10], 'Food Intake Change (g)': [0, -0.5, -1]} df = pd.DataFrame(data) plt.bar(df['Treatment'], df['Body Weight Change (g)'], color='blue', label='Body Weight Change') plt.bar(df['Treatment'], df['Food Intake Change (g)'], color='orange', label='Food Intake Change', alpha=0.5) plt.title('Effects of Baclofen on Body Weight and Food Intake') plt.ylabel('Change (g)') plt.legend() plt.show()