Beth Robertson

Logo

Data Analyst | Problem Solver

Let's go get some insights!

View My LinkedIn Profile

View My GitHub Profile

Mining Project (using Python)

Project Description
For this project, I was assigned the role of a data analyst for a mining company. The company wants some information about their flotation process for beneficiation (cleaning and separation) of the iron ore. At the end of the process, they want to have iron ore that is of the quality that it can be smelted, and a small amount of silica concentrate, which is the undesired mineral in this process.

Project Summary

The Data and the Process
I used Pandas and Python to read the data from a .csv file. This dataset used the European format for decimal numbers, having a comma where, in the U.S., we would expect to see a decimal point, so I added decimal = ‘,’ to the read statement. The date had to be changed to a datetime value using pd.to_datetime, because, by default, Pandas reads dates as a string unless you tell it to parse the dates and give it a format in your read statement.

Here are all the columns in the dataset:

Pasted Graphic 1

I used the .shape property and the .describe() method to learn more about the dataset. Then I started reading about the actual process to understand more about where the data comes from and the business goal. (See references below.)

Some of the measurements in the dataset are taken every twenty seconds and some every hour, which, to me, makes it difficult to really understand what is happening. % Iron Concentrate and % Silica Concentrate are actually values calculated by an on-site lab and later inserted into the data. They are not calculated during the process.

More Research
Once I read more information about the process, I became interested in what this dataset was originally intended to do. It turns out that what the plant hopes to do is actually predict the % Iron Concentrate and the % Silica Concentrate ahead of time instead of waiting for measurements from the lab. According to a ‘mineral processing engineer and amateur data scientist’ in the comments section for this dataset, here is a description of these two variables1:

% Iron Concentrate, % Silica Concentrate = These are our product. Concentrate goes to the blast furnaces after enrichment. Metallurgists demand certain concentration grades from us for smelting. If the demanded value is not achieved, the quality of the metallurgical process decreases. Our main goal is to achieve these values in concentrate. Generally, these values for iron reverse cationic flotation are:                 Fe = 67% 68%                 SiO2 = 1.6% -1.7%


Describe for % Iron Concentrate and % Silica Concentrate
I ran .describe() so I could see just the values for the intended products, % Iron Concentrate and % Silica Concentrate.

65 05006799

Our dataset summary:
Concentrato
Therefore, according to our ‘expert’, this mine is actually not producing in the way it should be producing.

Correlation

I used the correlation method, .corr(), to see what the correlation coefficient was between the variables for a date given by the plant manager.

CORRELATION TABLE

Here is how you interpret correlation coefficients.
image

Conclusion: There was very little correlation between any of the variables except the end products.

Also, according to our ‘expert’, there are actually more data that are needed to be able to use machine learning to predict the % concentrates at the end, including:

Project Wrap-up

In this project, I looked at data from a mining operation. I got to practice some Python skills and also learned some information about iron ore processing. It was interesting to read about the processes and to learn from actual metallurgical engineers. Even though I couldn’t accurately predict % Iron Concentrate or % Silica Concentrate with this data, the project was valuable.

Please get in touch with any questions you have. I am looking for a full-time data analyst position and would love to connect with anyone who has a position open or who knows of one.

Thanks for reading!

References
Froth Flotation and Its Application to Concentration of Low Grade Iron Ores
An Overview of the Beneficiation of Iron Ores via Reverse Cationic Flotation