All Questions
5 questions
2
votes
2
answers
115
views
Downloading COVID data and uploading graphs
So this is a project I have been working on for the last few weeks. Just started learning Python. Started out with bash scripting and got the itch to learn more. Anyway code fetches covid-19 data from ...
5
votes
1
answer
302
views
Jupyter notebook style help + code suggestions for pandas
I wanted to open source some code to scrape and analyze publicly-filed stock buys and sells from U.S. senators. I'm not familiar with code style for Jupyter notebooks or pandas in general. Would it be ...
8
votes
3
answers
825
views
Modifying Titration Data analysis results
This is my first script that I've written. As a result, I'm sure there are extra lines that are unneeded, or maybe better more concise ways of doing things than I have done here. I have tried to add ...
2
votes
1
answer
144
views
Pythonic way of managing data for plotting 2D variance plots
I have collected large dataset of trajectories in 3D space. Below is the information about dataset-
Each trajectory (shape: n x 4) is saved into CSV file with the following header: ...
13
votes
1
answer
1k
views
A big "Game of Life"
Our quest: Create a big simulation for Conway's Game of Life, and record the entire simulation history.
Current Approach: Cython is used for an iterate method. The ...