neelkandlikar / water-sentiment

0 stars 0 forks source link

added geo-data: fixes #9 #11

Closed neelkandlikar closed 4 years ago

richpauloo commented 4 years ago

Great work! I have a few minor comments that can be addressed in a small amount of time. Please review the following points, revise, and resubmit the PR:

Once again, great job. Onwards!

richpauloo commented 4 years ago

Great job NN. This lgtm. Onwards to the more exciting parts of the analysis! 🎉

NeerajRattehalli commented 4 years ago

this should address all the issues except 03_clean_tokenize-checkpoint.ipynb - define the imported packages that the strict depends on, and move getTdm(doc) to the top of the document. Typically, scripts should start with imports, followed by function definitions, then input files, then code.

We weren't exactly sure how to define imported packages. It'd be great if you could send a more detailed sample for it.

richpauloo commented 4 years ago

I think you did it correctly, or maybe I missed something.

What I mean is that good code styling is to define all packages and functions up top (even if you write them below — just move them up when they’re stable).

Something like:

import numpy as np import pandas as pd

def my_function(x): print("slick style")

rest of code

On Mon, Sep 14, 2020 at 11:24 PM Neeraj Rattehalli notifications@github.com wrote:

this should address all the issues except 03_clean_tokenize-checkpoint.ipynb - define the imported packages that the strict depends on, and move getTdm(doc) to the top of the document. Typically, scripts should start with imports, followed by function definitions, then input files, then code.

We weren't exactly sure how to define imported packages. It'd be great if you could send a more detailed sample for it.

— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/neelkandlikar/water-sentiment/pull/11#issuecomment-692494214, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACO3TK4WKWBVZIWGNFQKQITSF4CCZANCNFSM4RDZGB5Q .

NeerajRattehalli commented 4 years ago

aight bet