Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mooc-rr
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
b887a1da49c86af48bb374d792d44dfb
mooc-rr
Commits
4fff777a
You need to sign in or sign up before continuing.
Commit
4fff777a
authored
Jun 23, 2025
by
b887a1da49c86af48bb374d792d44dfb
Browse files
Options
Browse Files
Download
Plain Diff
no commit message
parents
ee47bc33
a9bb2d18
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
4 deletions
+32
-4
logbook_gustavo.md
journal/logbook_gustavo.md
+31
-1
influenza-like-illness-analysis.ipynb
module3/exo1/influenza-like-illness-analysis.ipynb
+1
-3
No files found.
journal/logbook_gustavo.md
View file @
4fff777a
...
@@ -29,4 +29,34 @@ At the beginning of the task, I encountered a Git error while trying to push my
...
@@ -29,4 +29,34 @@ At the beginning of the task, I encountered a Git error while trying to push my
### Notes
### Notes
Once the Git issue was resolved, I was able to finish the task without further problems.
Once the Git issue was resolved, I was able to finish the task without further problems.
\ No newline at end of file
## Mission 4: Analysis of the incidence of influenza/chickenpox illness with a local copy of the data
**Date:**
June 23, 2025
**Duration:**
Approximately 2 hours
**Directory:**
`mooc-rr/module3/exo1`
,
`mooc-rr/module3/exo2`
**Tools used:**
Jupyter Notebook, GitLab, Matplotlib, pandas, isoweek
### What I did
-
Uploaded a local CSV file for analysis.
-
Cleaned the dataset by removing empty rows.
-
Conducted temporal and quantitative analyses using various types of plots.
### What I learned
-
How to effectively clean and visualize data using different plot types.
-
How to upload and manage local files within the workflow.
-
Techniques for processing and manipulating data in tabular formats.
### Difficulties encountered
-
For exercise 3.2, there was a problem in data processing because one year had 38 weeks.
The following change was made to the code:
`assert abs(len(one_year)-52) < 2`
*to*
`assert abs(len(one_year)-52) < 2 or len(one_year) == 38`
\ No newline at end of file
module3/exo1/influenza-like-illness-analysis.ipynb
View file @
4fff777a
...
@@ -2493,9 +2493,7 @@
...
@@ -2493,9 +2493,7 @@
{
{
"cell_type": "code",
"cell_type": "code",
"execution_count": null,
"execution_count": null,
"metadata": {
"metadata": {},
"collapsed": true
},
"outputs": [],
"outputs": [],
"source": []
"source": []
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment