Skip to content

Commit becf2b4

Browse files
Update README.md
1 parent afc8c48 commit becf2b4

File tree

1 file changed

+32
-8
lines changed

1 file changed

+32
-8
lines changed

README.md

Lines changed: 32 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,34 +7,42 @@
77

88

99

10-
<h1 align = 'center'>Extracting Data From Files</h1>
1110

12-
As a data scientist for a climate research organization, I want to update some models. Where I need to extract temperature data for 3 regions being monitored. Unfortunately the temperature reading devices are quite old and can only be configured to dump data each day into a folder called `/temps` on the server. Each file contains the daily temperature for each region. I've then stored these variables in an array, calculated the **average temperature** of the regions and **append** this to the array.
11+
<h1 align = 'center'>Moving Machine Learning Model Results</h1>
1312

14-
- For example, for temperatures of 60 and 70, the array should have 60, 70, and 65 as its elements.
13+
As a data scientist in charge of analyzing some machine learning model results, The production environment moves files into a folder called `model_out/` and names them model_RXX.csv where XX is a random number related to which experiment was run. Each file has the following structure (example):
1514

15+
<pre>
16+
Model Name, Accuracy, CV, Model Duration (s)
17+
Logistic,42,4,48
18+
</pre>
19+
20+
The manager wants that recent work in the organization has meant that tree-based models are to be kept in one folder and everything else deleted. This script works to move the tree-based models (**Random Forest, GBM**, and **XGBoost**) to the `tree_models/ folder`, and delete all other models (**KNN** and **Logistic**).
1621

1722

18-
👈🏻 Click Logo [<img align="left" alt="Bash" width="47px" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/bash/bash.png" />](https://github.com/Emon-ProCoder7/MyBash_scripts/blob/master/temperature.sh)
23+
👈🏻 Click Logo [<img align="left" alt="Bash" width="47px" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/bash/bash.png" />](https://github.com/Emon-ProCoder7/MyBash_scripts/blob/master/moving_model_files.sh)
1924

2025

2126
<br><br><br>
2227

2328

2429

25-
<h1 align = 'center'>My Build Directory Automation</h1>
2630

27-
- One common use of bash scripts is for releasing a “build” of source code. Sometimes the private source code may contain developer resources or private information that they don’t want to release in the published version.
28-
In this project, I've created a release script to automate coping certain files from a source directory into a build directory.
31+
<h1 align = 'center'>Extracting Data From Files</h1>
2932

30-
👈🏻 Click Logo [<img align="left" alt="Bash" width="47px" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/bash/bash.png" />](https://github.com/Emon-ProCoder7/MyBash_scripts/blob/master/build_Script.sh)
33+
As a data scientist for a climate research organization, I want to update some models. Where I need to extract temperature data for 3 regions being monitored. Unfortunately the temperature reading devices are quite old and can only be configured to dump data each day into a folder called `/temps` on the server. Each file contains the daily temperature for each region. I've then stored these variables in an array, calculated the **average temperature** of the regions and **append** this to the array.
34+
35+
- For example, for temperatures of 60 and 70, the array should have 60, 70, and 65 as its elements.
3136

3237

3338

39+
👈🏻 Click Logo [<img align="left" alt="Bash" width="47px" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/bash/bash.png" />](https://github.com/Emon-ProCoder7/MyBash_scripts/blob/master/temperature.sh)
40+
3441

3542
<br><br><br>
3643

3744

45+
3846
<h1 align = 'center'>Extracting HR Data from Files</h1>
3947

4048
As a data scientist in the HR department of a large IT company, I need to extract salary figures for recent hires, however, the HR IT system simply spits out hundreds of files into the folder **/hire_data**.
@@ -53,3 +61,19 @@ Each file is comma-delimited in the format **COUNTRY,CITY,JOBTITLE,SALARY** such
5361

5462

5563
<br><br><br>
64+
65+
66+
67+
<h1 align = 'center'>My Build Directory Automation</h1>
68+
69+
- One common use of bash scripts is for releasing a “build” of source code. Sometimes the private source code may contain developer resources or private information that they don’t want to release in the published version.
70+
In this project, I've created a release script to automate coping certain files from a source directory into a build directory.
71+
72+
👈🏻 Click Logo [<img align="left" alt="Bash" width="47px" src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/bash/bash.png" />](https://github.com/Emon-ProCoder7/MyBash_scripts/blob/master/build_Script.sh)
73+
74+
75+
76+
77+
<br><br><br>
78+
79+

0 commit comments

Comments
 (0)