This repository includes the exercise files from our course "Programming for Data Science" series which can be found at https://www.youtube.com/watch?v=jOZNjVVZIVs&list=PLD_eiqVVLZDi9GZZJDC8Zx4-3Np8LHs52
3 |For all the lab session to practice along, please refer to the Lab sessions playlist at https://www.youtube.com/watch?v=FXPPJCnuJuE&list=PLD_eiqVVLZDh0FDc1UwCUCFsNMKlxOiv3
4 | -------------------------------------------------------------------------------- /abc_ltd.csv: -------------------------------------------------------------------------------- 1 | Name,Department,Salary 2 | Win Win,Engineering,250000 3 | Sein Sein,IT,300000 4 | Aung Aung,Finance,200000 5 | Ni Ni,HR,150000 6 | Maung Ba,Finance,205000 7 | Maung Hla,HR,155000 8 | -------------------------------------------------------------------------------- /abc_ltd.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myanmards/programming-series/8e9ce91a4891dea12270cebdf770f5338f4b24c1/abc_ltd.db -------------------------------------------------------------------------------- /abc_ltd.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "Name": "Win Win", 4 | "Department": "Engineering", 5 | "Salary": 250000 6 | }, 7 | { 8 | "Name": "Sein Sein", 9 | "Department": "IT", 10 | "Salary": 300000 11 | }, 12 | { 13 | "Name": "Aung Aung", 14 | "Department": "Finance", 15 | "Salary": 200000 16 | }, 17 | { 18 | "Name": "Ni Ni", 19 | "Department": "HR", 20 | "Salary": 150000 21 | }, 22 | { 23 | "Name": "Maung Ba", 24 | "Department": "Finance", 25 | "Salary": 205000 26 | }, 27 | { 28 | "Name": "Maung Hla", 29 | "Department": "HR", 30 | "Salary": 155000 31 | } 32 | ] -------------------------------------------------------------------------------- /xyz_ltd.csv: -------------------------------------------------------------------------------- 1 | Name,Department,Salary 2 | Soe Soe,Engineering,250000 3 | Ko Ko,IT,300000 4 | Maung Maung,Finance,200000 5 | Hla Hla,HR,150000 6 | Kyaw Kyaw,Finance,205000 7 | San San,HR,155000 8 | --------------------------------------------------------------------------------