= "cv_KK1.txt"
apath
= open (path, encoding = 'utf-8') f
for line in f:
print(line)
Kunal Khurana
Email: Khuranasoilpau@gmail.com
Website: ilovesoils.com
LinkedIn: [https://www.linkedin.com/in/khuranasoils/]
GitHub: [https://github.com/Kkhurana007]
Google Scholar: [https://scholar.google.com/citations?hl=en&user=wpx6SKUAAAAJ]
Professional Summary
Detail-oriented researcher with a strong background in statistical analysis, machine learning, and data science. Proficient in Python and modern data analysis tools with over 5 years of experience. M.Sc. in Soil Science. Fluent in English, French, Hindi, and Punjabi.
Skills
Data Science and Machine Learning: Python (NumPy, Pandas, SciPy, Scikit-learn), TensorFlow, PyTorch, machine learning algorithms, deep learning, neural networks, statistical analysis.
Data Visualization: Matplotlib, Seaborn, Plotly, Power BI, Altair.
Database: SQL (PostgreSQL, MySQL), NoSQL.
NLP and Language Processing: Natural Language Processing algorithms, Neural Machine Translation (NMT).
Programming: Proficient in Python, software engineering principles, Flask.
Problem Solving: Strong analytical and problem-solving skills.
Communication: Effective communicator, capable of conveying complex technical concepts.
Continuous Learning: Committed to staying updated with the latest advancements in machine learning and related fields.
Professional Experience
Researcher
McGill University, Montreal, CA
September 2022 - December 2023
Conducted data analysis and research in the field of soil science, focusing on climate trends and agricultural crop yield prediction.
Developed predictive models using machine learning techniques.
Managed and analyzed large datasets using Python and SQL databases.
Collaborated with a multidisciplinary team to achieve research objectives.
Graduate Research Assistant
Université Laval, Quebec, CA
January 2019 - June 2022
Investigated the production of phenolics-rich biochar for controlling greenhouse gas emissions.
Managed and analyzed wetland datasets for Exploratory Data Analysis using Python.
Collaborated with a multidisciplinary team to optimize the production process, ensuring scalability and environmental sustainability.
Utilized advanced statistical techniques to identify key patterns and trends within the wetland datasets, facilitating evidence-based recommendations.
Contributed to research publications and presentations.
Research Fellow
Punjab Agricultural University, Ludhiana, IN
October 2016 - December 2018
Improved bio-efficacy of zinc in rice-wheat cropping systems to enhance grain quality and health.
Conducted surveys for observation, sampling, and mapping with ArcGIS.
Gained expertise in laboratory analysis using an Atomic Adsorption spectrophotometer for plant and elemental soil composition.
Conducted statistical hypothesis testing using SPSS.
Prepared and submitted reports and presentations for the project.
Education
Master of Science in Soil Science
Punjab Agricultural University, Ludhiana, IN
July 2013- March 2016
Bachelor of Agriculture
Punjabi University Patiala, Patiala, IN
August 2009- May 2013
Volunteer Experience
Participant
Club d’IA, Quebec, CA
March 2021 - Present
Interests
Triathlon
Reading
Traveling
This functional CV highlights Kunal Khurana's skills, professional experience, education, and interests in a clear and structured format.
= [x.rstrip() for x in open (path, encoding = "utf-8")]
lines
lines
['Kunal Khurana',
'Email: Khuranasoilpau@gmail.com',
'Website: ilovesoils.com',
'LinkedIn: [https://www.linkedin.com/in/khuranasoils/]',
'GitHub: [https://github.com/Kkhurana007]',
'Google Scholar: [https://scholar.google.com/citations?hl=en&user=wpx6SKUAAAAJ]',
'',
'Professional Summary',
'Detail-oriented researcher with a strong background in statistical analysis, machine learning, and data science. Proficient in Python and modern data analysis tools with over 5 years of experience. M.Sc. in Soil Science. Fluent in English, French, Hindi, and Punjabi.',
'',
'Skills',
'',
'Data Science and Machine Learning: Python (NumPy, Pandas, SciPy, Scikit-learn), TensorFlow, PyTorch, machine learning algorithms, deep learning, neural networks, statistical analysis.',
'',
'Data Visualization: Matplotlib, Seaborn, Plotly, Power BI, Altair.',
'',
'Database: SQL (PostgreSQL, MySQL), NoSQL.',
'',
'NLP and Language Processing: Natural Language Processing algorithms, Neural Machine Translation (NMT).',
'',
'Programming: Proficient in Python, software engineering principles, Flask.',
'',
'Problem Solving: Strong analytical and problem-solving skills.',
'',
'Communication: Effective communicator, capable of conveying complex technical concepts.',
'',
'Continuous Learning: Committed to staying updated with the latest advancements in machine learning and related fields.',
'',
'Professional Experience',
'',
'Researcher',
'McGill University, Montreal, CA',
'September 2022 - December 2023',
'',
'Conducted data analysis and research in the field of soil science, focusing on climate trends and agricultural crop yield prediction.',
'Developed predictive models using machine learning techniques.',
'Managed and analyzed large datasets using Python and SQL databases.',
'Collaborated with a multidisciplinary team to achieve research objectives.',
'',
'Graduate Research Assistant',
'Université Laval, Quebec, CA',
'January 2019 - June 2022',
'',
'Investigated the production of phenolics-rich biochar for controlling greenhouse gas emissions.',
'Managed and analyzed wetland datasets for Exploratory Data Analysis using Python.',
'Collaborated with a multidisciplinary team to optimize the production process, ensuring scalability and environmental sustainability.',
'Utilized advanced statistical techniques to identify key patterns and trends within the wetland datasets, facilitating evidence-based recommendations.',
'Contributed to research publications and presentations.',
'',
'Research Fellow',
'Punjab Agricultural University, Ludhiana, IN',
'October 2016 - December 2018',
'Improved bio-efficacy of zinc in rice-wheat cropping systems to enhance grain quality and health.',
'Conducted surveys for observation, sampling, and mapping with ArcGIS.',
'Gained expertise in laboratory analysis using an Atomic Adsorption spectrophotometer for plant and elemental soil composition.',
'Conducted statistical hypothesis testing using SPSS.',
'Prepared and submitted reports and presentations for the project.',
'',
'Education',
'',
'Master of Science in Soil Science',
'Punjab Agricultural University, Ludhiana, IN',
'July 2013- March 2016',
'',
'Bachelor of Agriculture',
'Punjabi University Patiala, Patiala, IN',
'August 2009- May 2013',
'',
'Volunteer Experience',
'',
'Participant',
'Club d’IA, Quebec, CA',
'March 2021 - Present',
'',
'Interests',
'',
'Triathlon',
'Reading',
'Traveling',
"This functional CV highlights Kunal Khurana's skills, professional experience, education, and interests in a clear and structured format."]
f.close()
= open(path)
f1
14) f1.read(
'Kunal Khurana\n'
= open (path, mode = 'rb') # binary mode
f2
14) f2.read(
b'Kunal Khurana\r'
f1.tell()
15
f2.tell()
14
# check default encoding
import sys
sys.getdefaultencoding()
'utf-8'
3) f1.seek(
3
1) f1.read(
'a'
f1.tell()
4
f1.close()
f2.close()
# bytes and unicode with files
with open(path) as f:
= f.read(13) chars
chars
'Kunal Khurana'
len(chars)
13
= open(path, encoding = 'utf-8')
f
5) f.read(
'Kunal'
1) f.read(
' '
1) f.seek(
1