Learn practical skills, build real-world projects, and advance your career
# This Python 3 environment comes with many helpful analytics libraries installed
# It is defined by the kaggle/python Docker image: https://github.com/kaggle/docker-python
# For example, here's several helpful packages to load

import numpy as np # linear algebra
import pandas as pd # data processing, CSV file I/O (e.g. pd.read_csv)

# Input data files are available in the read-only "../input/" directory
# For example, running this (by clicking run or pressing Shift+Enter) will list all files under the input directory

import os
for dirname, _, filenames in os.walk('/kaggle/input'):
    for filename in filenames:
        print(os.path.join(dirname, filename))

# You can write up to 5GB to the current directory (/kaggle/working/) that gets preserved as output when you create a version using "Save & Run All" 
# You can also write temporary files to /kaggle/temp/, but they won't be saved outside of the current session
/kaggle/input/hiring/hiring.csv
!pip install word2number
Collecting word2number Downloading word2number-1.1.zip (9.7 kB) Building wheels for collected packages: word2number Building wheel for word2number (setup.py) ... done Created wheel for word2number: filename=word2number-1.1-py3-none-any.whl size=5586 sha256=bc29a382a8808253c2efd5f46f76e13a6343ec5dcb23c344eeb2fc5ef3e7f42a Stored in directory: /root/.cache/pip/wheels/4b/c3/77/a5f48aeb0d3efb7cd5ad61cbd3da30bbf9ffc9662b07c9f879 Successfully built word2number Installing collected packages: word2number Successfully installed word2number-1.1
import pandas as pd
import numpy as np
from sklearn import linear_model
from word2number import w2n
df = pd.read_csv('../input/hiring/hiring.csv')
df
df.experience = df.experience.fillna("zero")
df