Update Fedora state: 2026-04-29 11:50
This commit is contained in:
parent
42ca768584
commit
10f0d5de1d
338 changed files with 18983 additions and 32 deletions
18
dot_config/private_Code/User/History/-6123ca19/Xb2Q.py
Normal file
18
dot_config/private_Code/User/History/-6123ca19/Xb2Q.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env python3
|
||||
"""Quick test to verify Data Analysis.py works correctly."""
|
||||
import subprocess
|
||||
import sys
|
||||
|
||||
result = subprocess.run([sys.executable, 'Data Analysis.py'], capture_output=True, text=True, timeout=30)
|
||||
print("STDOUT:")
|
||||
print(result.stdout[-2000:] if len(result.stdout) > 2000 else result.stdout)
|
||||
print("\nSTDERR:")
|
||||
print(result.stderr[-1000:] if len(result.stderr) > 1000 else result.stderr)
|
||||
print(f"\nExit code: {result.returncode}")
|
||||
|
||||
# Check for plot files
|
||||
import os
|
||||
plot_files = sorted([f for f in os.listdir('plots') if f.endswith('.png')])
|
||||
print(f"\nGenerated {len(plot_files)} plot files:")
|
||||
for f in plot_files:
|
||||
print(f" - {f}")
|
||||
|
|
@ -0,0 +1 @@
|
|||
{"version":1,"resource":"file:///home/breadway/Documents/Year%2010/Year%2010/Psychology/test_analysis.py","entries":[{"id":"Xb2Q.py","source":"Chat Edit: 'ensure the graphs being used are appropriate for the study'","timestamp":1774346851499}]}
|
||||
Loading…
Add table
Add a link
Reference in a new issue