kedro-org / kedro-starters

Templates for your Kedro projects.
Apache License 2.0
63 stars 57 forks source link

Resolve inconsistencies in the spaceflights data #154

Closed laizaparizotto closed 9 months ago

laizaparizotto commented 9 months ago

Motivation and Context

This PR is the same as in https://github.com/kedro-org/kedro/pull/3119 but addressed in this repository Resolve #153 I created a new issue here #153 explaining the proposed solution and which files should be changed.

The proposed solution is:

[...]
 rated_shuttles = shuttles.merge(reviews, left_on="id", right_on="shuttle_id")
 rated_shuttles = rated_shuttles.drop("id", axis=1)
 companies = companies.drop_duplicates()
 model_input_table = rated_shuttles.merge(
     companies, left_on="company_id", right_on="id"
[...]
 )

How has this been tested?

I was able to install make file, but not able to run make test in this repo.

Checklist