Kristian Olesen Larsen

Results 26 comments of Kristian Olesen Larsen

Good catch. The way the question reads it should obviously be asserting that there are 30003 rows. I have pushed a new version of the assignment which allows both answers,...

You need to submit individually, but can submit identical files. It is encouraged to complete the assignment in groups, but if you have already solved it individually this is fine...

For a start what you have pasted is not valid python code. Read [this](https://guides.github.com/pdfs/markdown-cheatsheet-online.pdf) if you don't know how to type formatted code on github. Other than that, do you...

Not the python `sum` function, the mathematical one, sorry if that was unclear. You are right that `sum` expects an iterable object, so to use it you would first need...

@snorreralund can you make your changes in this repo? https://github.com/elben10/ScrapingClass that would make it easy for Jakob to push an updated version to pypi.

> Try to reinstall git ... or delete windows. Jokes aside - I think re-cloning the repo solved this issue for another student earlier today. It is most likely an...

I have just written a post about this on Absalon, but it's probably good to repeat it here: >Hi Everyone, > >Several of you asked about the specific requirements for...

Can you share the code you use to create the dataset?

Sorry - `weather_data_1864to1867.csv` should have been deleted before uploading. Use `prepareWeatherData` to create the dataset, i.e. your answer should contain code like ```python data_storage = [] years = '1864,1865,1866,1867'.split(',') for...

The answer assumes that the original datetimes and the ones converted to python datetime format are stored in separate columns. If you overwrite the raw dates and/or reindex your dataframe...