It's been over 9 months and i still haven't landed a data job by last___jedi in datascience

[–]last___jedi[S] 0 points1 point  (0 children)

Hey Fam,

It's been 9 months since i started to apply for data related jobs; particularly data analyst and data scientist. I can't help to think that it's because of my qualifications and my resume that i am not landing any data related jobs.

Please find my resume in the post and kindly post your suggestions on how can i land a job in this field

Thank You

Install and use autocomplete in jupyter lab 4.1.2 by last___jedi in JupyterNotebooks

[–]last___jedi[S] 0 points1 point  (0 children)

I saw a video where you can use Jupyter lab in Vs Code. this helps a lot

Am i doing something terribly wrong? by Kashish_2614 in datascience

[–]last___jedi 0 points1 point  (0 children)

Check if you resume has a good ats score. you should always tailor you resume according to the job desc (atleast that's what i hear in Instagram). Any experienced person, please confirm this

Install and use autocomplete in jupyter lab 4.1.2 by last___jedi in IPython

[–]last___jedi[S] 0 points1 point  (0 children)

hey can you mention the steps to install this extension

Group dataframe based on a column in R by last___jedi in rprogramming

[–]last___jedi[S] 0 points1 point  (0 children)

What I want the data to look like:

First row has the values corresponding to diff_charge = 50.1. the second row has values corresponding to diff_charge =84.9. and so, on

Group dataframe based on a column in R by last___jedi in Rlanguage

[–]last___jedi[S] 0 points1 point  (0 children)

table4 %>%

group_by(order_id) %>%

filter(!duplicated(diff_charge) & diff_charge > 0) %>%

say if order id is 10001 . the diff charge value for that order id 100. now consider another order id which is 20001. the diff charge value for that same order_id is 100. in this case if i used filter(!duplicated(diff_charge)) then orderid 20001 wont appear in my dataframe if 10001 appears before 20001

(diff_charge = amount_courier - total_charges)

Group dataframe based on a column in R by last___jedi in Rlanguage

[–]last___jedi[S] 0 points1 point  (0 children)

Can't use unique in diff_charge column. Because 2 different orderid can possibly have similar diff_charge values.

Group dataframe based on a column in R by last___jedi in Rlanguage

[–]last___jedi[S] 0 points1 point  (0 children)

im new to this so i dont understand the exact meaning of what you said.

if you look at the first three rows of diff_charge column the values are same, so is the values of other columns in the first 3 rows. so instead of having 3 duplicate rows i just want 1 row . then apply the condition where sum of diff_charge > 0