Update logbook_gustavo.md

parent 4fff777a
......@@ -52,6 +52,14 @@ Once the Git issue was resolved, I was able to finish the task without further p
### Difficulties encountered
- For exercise 1, an error was found in the line:
`sorted_data['inc'].plot()`
- This happened because the 'inc' data were of type object. To fix this, a line of code was added before to convert the data to numeric:
`sorted_data['inc'] = pd.to_numeric(sorted_data['inc'])`
- 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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment