Featured Post

How to Check Column Nulls and Replace: Pandas

Image
Here is a post that shows how to count Nulls and replace them with the value you want in the Pandas Dataframe. We have explained the process in two steps - Counting and Replacing the Null values. Count null values (column-wise) in Pandas ## count null values column-wise null_counts = df.isnull(). sum() print(null_counts) ``` Output: ``` Column1    1 Column2    1 Column3    5 dtype: int64 ``` In the above code, we first create a sample Pandas DataFrame `df` with some null values. Then, we use the `isnull()` function to create a DataFrame of the same shape as `df`, where each element is a boolean value indicating whether that element is null or not. Finally, we use the `sum()` function to count the number of null values in each column of the resulting DataFrame. The output shows the count of null values column-wise. to count null values column-wise: ``` df.isnull().sum() ``` ##Code snippet to count null values row-wise: ``` df.isnull().sum(axis=1) ``` In the above code, `df` is the Panda

How to Show Data Science Project in Resume Correctly

The data scientist resume should have mentioned the project correctly. Here are my ideas on how to show the project in the resume.

Resume: How to Show Data Science Project


How to Show Data Science Project?

1. Preparation of Resume

The first step for an interview for any project is you need Resume. You need to tell clearly about your resume. 


2. Answering about Project. 

In interviews, you will be asked questions about your project. So the second step is you need to be in a position to explain the project.


3. Answering your Project Role. 

The third point is you need to explain the roles you performed in your data science project. If you mention the roles correctly, then, you will have a 100% chance to shortlist your resume.

Based on your experience your resume can be 1 page or 2 pages

4. Technologies in the Resume.

In interviews, again they will be asked how you used different tools to complete your data science project. So, you need to be in a position to explain how you used different options present in the tools. 

Sometimes, in interviews, they may ask about the specific role in Tools specifically you used. You should be in a position to answer these questions too.

How to Prepare Resume. 

  1. Write a clear description.
  2. Write a specific role.
  3. Explain Tools. 
  4. Write about data flow.

1. Write a Clear Description.  In any data science project, you will find a few things like Client name, the expectation of the client, and what you are going to deliver. These things you need to present clearly in your Resume. 


2. Write Specific Roles. Roles. To convince your interviewer, you need to tell about your team roles and your specific role. In general, you can find the following roles:
  • Architect.
  • Data scientist.
  • Business Analyst.
  • Development team.
  • Testing Team.
  • Integration testing team.
  • Production release team.

3. Explain Tools. You need to present all the Tools your project is using and your specific tools. Then, in the face-to-face interview, you need to tell what options you used to achieve what.

For example, I used some integration tool, to receive data to the development region, and to send out after unit testing. If you explain, these key points, I can say, 100% sure, you will be selected.

4. Write about data flow. You need to explain how data is coming, is it in the sequential data set or document data. Something you need to tell clearly.

You also need to tell, after unit testing, which forms you will send the data to the next region. If you know this flow correctly, then you can convince easily your interviewer.

Comments

Popular posts from this blog

Explained Ideal Structure of Python Class

How to Check Kafka Available Brokers

6 Python file Methods Real Usage