├── 1. Simple Linear Regression └── code-LR-Teclov (1) │ └── code_LR_Teclov │ ├── Case_study Simple+Linear+Regression.ipynb │ └── tvmarketing.csv ├── 10. Support Vector Machine └── SVM-2 │ └── SVM 2 │ ├── Spam.csv │ ├── Spam.txt │ ├── Teclov_LinearSVM.ipynb │ ├── Teclov_Non-Linear+SVM.ipynb │ ├── Teclov_SVM_casestudy3.ipynb │ ├── Teclov_kaggle_casestudy4.ipynb │ ├── letter-recognition.csv │ └── train and test csv files.zip ├── 11. Decision Tree └── Decision Tree │ └── Decision Tree │ ├── DecisionTree_case study Teclov.ipynb │ └── adult_dataset.csv ├── 12. Ensembling ├── Boosting │ └── Boosting │ │ ├── TeclovBoosting+-+TalkingData+Click+Fraud+.ipynb │ │ ├── Teclov_Adaboost_cancer_prediction.ipynb │ │ └── train_sample.csv └── Random_Forest │ └── Random Forest - Credit_Default_Prediction │ ├── Teclov Random+Forest+-+Credit+Default+Prediction.ipynb │ └── credit-card-default.csv ├── 14. Unsupervised Learning └── Unsupervised │ ├── Online+Retail.zip │ └── TeclovK--Mean--Clustering.ipynb ├── 15. Dimension Reduction └── PCA │ └── PCA │ ├── Teclov_PCA_casestudy1.ipynb │ └── train file.zip ├── 16. Advanced Machine Learning Algorithms └── AdvanceReg │ └── AdvanceReg │ ├── CarPrice_Assignment.csv │ ├── Car_price_data_Dictonary.xlsx │ ├── TeclovCar+Price+Prediction+-+Ridge+and+Lasso+Regression.ipynb │ ├── Teclov_generalised_regression.ipynb │ ├── total-electricity-consumption-us (1).csv │ └── total-electricity-consumption-us.csv ├── 18. Medical Treatment Project └── Teclov-Project-Medical-treatment.ipynb │ └── Teclov Project - Medical treatment.ipynb ├── 19. Quora Project └── Quora Project │ └── Quora Project │ ├── 2Teclov Document Similarity1.ipynb │ ├── 4.ML_models.ipynb │ ├── Quora Project.zip │ ├── Teclov1.Quora.ipynb │ └── Teclov3_W2V.ipynb ├── 2. Multiple Linear Regression └── Multiple Linear Regression │ └── Multiple_Linear_Regression │ ├── Housing.csv │ ├── Housing_Case_Study teclov.ipynb │ ├── Housing_RFE.ipynb │ ├── Multiple+Linear+Regression.ipynb │ └── advertising.csv ├── 20. Investment Requirement Analysis for a Company └── Real World Problem - Investment Requirement Analysis for a Company │ └── Teclov_Investment Requirement Analysis │ ├── Teclov Project description.pdf │ ├── Teclov_1_Data_Cleaning.ipynb │ ├── companies.txt │ ├── mapping.csv │ ├── rounds2.csv │ ├── teclov_2_Data_Cleaning.ipynb │ └── teclov_3_Analysis.ipynb ├── 21. Loan Analysis └── Teclov_Loan Analysis │ └── Teclov_Loan Analysis │ ├── Data_Dictionary.xlsx │ ├── Problem_statement.pdf │ ├── Teclov_Loan.ipynb │ ├── Thumbs.db │ └── loan.zip ├── 22. Car Project └── Car Project │ └── Car Project1 │ ├── CarPrice_Assignment.csv │ ├── Data Dictionary - carprices.xlsx │ ├── TeclovCar+Price+Prediction.ipynb │ └── Teclov_Problemdesc.pdf ├── 23. Stack Overflow Project - Facebook Recruitment └── TeclovFacebook.ipynb │ └── TeclovFacebook.ipynb ├── 3. Hotstar_Netflix_Case Study └── Hotstar_Netflix_Case Study │ └── Hotstar_Netfilx_Case Study │ ├── Media+Company.ipynb │ └── mediacompany.csv ├── 4. Gradient_Descent └── Gradient-Descent-Updated │ └── Gradient Descent Updated │ ├── Gradient_Descent_Updatd.ipynb │ ├── gd.PNG │ ├── gd1.PNG │ └── gd2.PNG ├── 5. KNN └── KNN │ ├── demo_data │ ├── 1.ushape.csv │ ├── 2.concerticcir1.csv │ ├── 3.concertriccir2.csv │ ├── 4.linearsep.csv │ ├── 5.outlier.csv │ ├── 6.overlap.csv │ ├── 7.xor.csv │ ├── 8.twospirals.csv │ ├── 9.random.csv │ └── meshgrid_image.png │ └── teclov_knn.ipynb ├── 7. Model Selection Part 1 ├── Case 1_ Model Creation_CrossValidation-Linear-Regression │ └── CrossValidation_Linear Regression │ │ ├── CarPrice_Assignment.csv │ │ ├── Housing.csv │ │ ├── TeclovCross-Validation - Linear Regression.ipynb │ │ ├── cv.png │ │ └── grid_search_image.png └── Thumbs.db ├── 8. NaiveBayes └── NaiveBayes │ ├── Mushroom Subset.xlsx │ ├── SMS+Classifier+_+Bernoulli+NB.ipynb │ ├── SMSSpamCollection+(1) │ ├── Teclov_Multinomial_Bernoulli_pythonNB.ipynb │ ├── Teclov_SMS+Classifier+_+Multinomial+Naive+Bayes.ipynb │ └── example_train1.csv ├── 9. Logistic Regression └── LogisticReg │ └── LogisticReg │ ├── Teclov_Logistic+Regression+-Telecom+Churn_casestudy.ipynb │ ├── churn_data.csv │ ├── customer_data.csv │ └── internet_data.csv ├── IMPORTANT NOTE.docx ├── LICENSE └── README.md /1. Simple Linear Regression/code-LR-Teclov (1)/code_LR_Teclov/tvmarketing.csv: -------------------------------------------------------------------------------- 1 | TV,Sales 2 | 230.1,22.1 3 | 44.5,10.4 4 | 17.2,9.3 5 | 151.5,18.5 6 | 180.8,12.9 7 | 8.7,7.2 8 | 57.5,11.8 9 | 120.2,13.2 10 | 8.6,4.8 11 | 199.8,10.6 12 | 66.1,8.6 13 | 214.7,17.4 14 | 23.8,9.2 15 | 97.5,9.7 16 | 204.1,19 17 | 195.4,22.4 18 | 67.8,12.5 19 | 281.4,24.4 20 | 69.2,11.3 21 | 147.3,14.6 22 | 218.4,18 23 | 237.4,12.5 24 | 13.2,5.6 25 | 228.3,15.5 26 | 62.3,9.7 27 | 262.9,12 28 | 142.9,15 29 | 240.1,15.9 30 | 248.8,18.9 31 | 70.6,10.5 32 | 292.9,21.4 33 | 112.9,11.9 34 | 97.2,9.6 35 | 265.6,17.4 36 | 95.7,9.5 37 | 290.7,12.8 38 | 266.9,25.4 39 | 74.7,14.7 40 | 43.1,10.1 41 | 228,21.5 42 | 202.5,16.6 43 | 177,17.1 44 | 293.6,20.7 45 | 206.9,12.9 46 | 25.1,8.5 47 | 175.1,14.9 48 | 89.7,10.6 49 | 239.9,23.2 50 | 227.2,14.8 51 | 66.9,9.7 52 | 199.8,11.4 53 | 100.4,10.7 54 | 216.4,22.6 55 | 182.6,21.2 56 | 262.7,20.2 57 | 198.9,23.7 58 | 7.3,5.5 59 | 136.2,13.2 60 | 210.8,23.8 61 | 210.7,18.4 62 | 53.5,8.1 63 | 261.3,24.2 64 | 239.3,15.7 65 | 102.7,14 66 | 131.1,18 67 | 69,9.3 68 | 31.5,9.5 69 | 139.3,13.4 70 | 237.4,18.9 71 | 216.8,22.3 72 | 199.1,18.3 73 | 109.8,12.4 74 | 26.8,8.8 75 | 129.4,11 76 | 213.4,17 77 | 16.9,8.7 78 | 27.5,6.9 79 | 120.5,14.2 80 | 5.4,5.3 81 | 116,11 82 | 76.4,11.8 83 | 239.8,12.3 84 | 75.3,11.3 85 | 68.4,13.6 86 | 213.5,21.7 87 | 193.2,15.2 88 | 76.3,12 89 | 110.7,16 90 | 88.3,12.9 91 | 109.8,16.7 92 | 134.3,11.2 93 | 28.6,7.3 94 | 217.7,19.4 95 | 250.9,22.2 96 | 107.4,11.5 97 | 163.3,16.9 98 | 197.6,11.7 99 | 184.9,15.5 100 | 289.7,25.4 101 | 135.2,17.2 102 | 222.4,11.7 103 | 296.4,23.8 104 | 280.2,14.8 105 | 187.9,14.7 106 | 238.2,20.7 107 | 137.9,19.2 108 | 25,7.2 109 | 90.4,8.7 110 | 13.1,5.3 111 | 255.4,19.8 112 | 225.8,13.4 113 | 241.7,21.8 114 | 175.7,14.1 115 | 209.6,15.9 116 | 78.2,14.6 117 | 75.1,12.6 118 | 139.2,12.2 119 | 76.4,9.4 120 | 125.7,15.9 121 | 19.4,6.6 122 | 141.3,15.5 123 | 18.8,7 124 | 224,11.6 125 | 123.1,15.2 126 | 229.5,19.7 127 | 87.2,10.6 128 | 7.8,6.6 129 | 80.2,8.8 130 | 220.3,24.7 131 | 59.6,9.7 132 | 0.7,1.6 133 | 265.2,12.7 134 | 8.4,5.7 135 | 219.8,19.6 136 | 36.9,10.8 137 | 48.3,11.6 138 | 25.6,9.5 139 | 273.7,20.8 140 | 43,9.6 141 | 184.9,20.7 142 | 73.4,10.9 143 | 193.7,19.2 144 | 220.5,20.1 145 | 104.6,10.4 146 | 96.2,11.4 147 | 140.3,10.3 148 | 240.1,13.2 149 | 243.2,25.4 150 | 38,10.9 151 | 44.7,10.1 152 | 280.7,16.1 153 | 121,11.6 154 | 197.6,16.6 155 | 171.3,19 156 | 187.8,15.6 157 | 4.1,3.2 158 | 93.9,15.3 159 | 149.8,10.1 160 | 11.7,7.3 161 | 131.7,12.9 162 | 172.5,14.4 163 | 85.7,13.3 164 | 188.4,14.9 165 | 163.5,18 166 | 117.2,11.9 167 | 234.5,11.9 168 | 17.9,8 169 | 206.8,12.2 170 | 215.4,17.1 171 | 284.3,15 172 | 50,8.4 173 | 164.5,14.5 174 | 19.6,7.6 175 | 168.4,11.7 176 | 222.4,11.5 177 | 276.9,27 178 | 248.4,20.2 179 | 170.2,11.7 180 | 276.7,11.8 181 | 165.6,12.6 182 | 156.6,10.5 183 | 218.5,12.2 184 | 56.2,8.7 185 | 287.6,26.2 186 | 253.8,17.6 187 | 205,22.6 188 | 139.5,10.3 189 | 191.1,17.3 190 | 286,15.9 191 | 18.7,6.7 192 | 39.5,10.8 193 | 75.5,9.9 194 | 17.2,5.9 195 | 166.8,19.6 196 | 149.7,17.3 197 | 38.2,7.6 198 | 94.2,9.7 199 | 177,12.8 200 | 283.6,25.5 201 | 232.1,13.4 202 | -------------------------------------------------------------------------------- /10. Support Vector Machine/SVM-2/SVM 2/train and test csv files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/10. Support Vector Machine/SVM-2/SVM 2/train and test csv files.zip -------------------------------------------------------------------------------- /14. Unsupervised Learning/Unsupervised/Online+Retail.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/14. Unsupervised Learning/Unsupervised/Online+Retail.zip -------------------------------------------------------------------------------- /15. Dimension Reduction/PCA/PCA/train file.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/15. Dimension Reduction/PCA/PCA/train file.zip -------------------------------------------------------------------------------- /16. Advanced Machine Learning Algorithms/AdvanceReg/AdvanceReg/CarPrice_Assignment.csv: -------------------------------------------------------------------------------- 1 | car_ID,symboling,CarName,fueltype,aspiration,doornumber,carbody,drivewheel,enginelocation,wheelbase,carlength,carwidth,carheight,curbweight,enginetype,cylindernumber,enginesize,fuelsystem,boreratio,stroke,compressionratio,horsepower,peakrpm,citympg,highwaympg,price 2 | 1,3,alfa-romero giulia,gas,std,two,convertible,rwd,front,88.6,168.8,64.1,48.8,2548,dohc,four,130,mpfi,3.47,2.68,9,111,5000,21,27,13495 3 | 2,3,alfa-romero stelvio,gas,std,two,convertible,rwd,front,88.6,168.8,64.1,48.8,2548,dohc,four,130,mpfi,3.47,2.68,9,111,5000,21,27,16500 4 | 3,1,alfa-romero Quadrifoglio,gas,std,two,hatchback,rwd,front,94.5,171.2,65.5,52.4,2823,ohcv,six,152,mpfi,2.68,3.47,9,154,5000,19,26,16500 5 | 4,2,audi 100 ls,gas,std,four,sedan,fwd,front,99.8,176.6,66.2,54.3,2337,ohc,four,109,mpfi,3.19,3.4,10,102,5500,24,30,13950 6 | 5,2,audi 100ls,gas,std,four,sedan,4wd,front,99.4,176.6,66.4,54.3,2824,ohc,five,136,mpfi,3.19,3.4,8,115,5500,18,22,17450 7 | 6,2,audi fox,gas,std,two,sedan,fwd,front,99.8,177.3,66.3,53.1,2507,ohc,five,136,mpfi,3.19,3.4,8.5,110,5500,19,25,15250 8 | 7,1,audi 100ls,gas,std,four,sedan,fwd,front,105.8,192.7,71.4,55.7,2844,ohc,five,136,mpfi,3.19,3.4,8.5,110,5500,19,25,17710 9 | 8,1,audi 5000,gas,std,four,wagon,fwd,front,105.8,192.7,71.4,55.7,2954,ohc,five,136,mpfi,3.19,3.4,8.5,110,5500,19,25,18920 10 | 9,1,audi 4000,gas,turbo,four,sedan,fwd,front,105.8,192.7,71.4,55.9,3086,ohc,five,131,mpfi,3.13,3.4,8.3,140,5500,17,20,23875 11 | 10,0,audi 5000s (diesel),gas,turbo,two,hatchback,4wd,front,99.5,178.2,67.9,52,3053,ohc,five,131,mpfi,3.13,3.4,7,160,5500,16,22,17859.167 12 | 11,2,bmw 320i,gas,std,two,sedan,rwd,front,101.2,176.8,64.8,54.3,2395,ohc,four,108,mpfi,3.5,2.8,8.8,101,5800,23,29,16430 13 | 12,0,bmw 320i,gas,std,four,sedan,rwd,front,101.2,176.8,64.8,54.3,2395,ohc,four,108,mpfi,3.5,2.8,8.8,101,5800,23,29,16925 14 | 13,0,bmw x1,gas,std,two,sedan,rwd,front,101.2,176.8,64.8,54.3,2710,ohc,six,164,mpfi,3.31,3.19,9,121,4250,21,28,20970 15 | 14,0,bmw x3,gas,std,four,sedan,rwd,front,101.2,176.8,64.8,54.3,2765,ohc,six,164,mpfi,3.31,3.19,9,121,4250,21,28,21105 16 | 15,1,bmw z4,gas,std,four,sedan,rwd,front,103.5,189,66.9,55.7,3055,ohc,six,164,mpfi,3.31,3.19,9,121,4250,20,25,24565 17 | 16,0,bmw x4,gas,std,four,sedan,rwd,front,103.5,189,66.9,55.7,3230,ohc,six,209,mpfi,3.62,3.39,8,182,5400,16,22,30760 18 | 17,0,bmw x5,gas,std,two,sedan,rwd,front,103.5,193.8,67.9,53.7,3380,ohc,six,209,mpfi,3.62,3.39,8,182,5400,16,22,41315 19 | 18,0,bmw x3,gas,std,four,sedan,rwd,front,110,197,70.9,56.3,3505,ohc,six,209,mpfi,3.62,3.39,8,182,5400,15,20,36880 20 | 19,2,chevrolet impala,gas,std,two,hatchback,fwd,front,88.4,141.1,60.3,53.2,1488,l,three,61,2bbl,2.91,3.03,9.5,48,5100,47,53,5151 21 | 20,1,chevrolet monte carlo,gas,std,two,hatchback,fwd,front,94.5,155.9,63.6,52,1874,ohc,four,90,2bbl,3.03,3.11,9.6,70,5400,38,43,6295 22 | 21,0,chevrolet vega 2300,gas,std,four,sedan,fwd,front,94.5,158.8,63.6,52,1909,ohc,four,90,2bbl,3.03,3.11,9.6,70,5400,38,43,6575 23 | 22,1,dodge rampage,gas,std,two,hatchback,fwd,front,93.7,157.3,63.8,50.8,1876,ohc,four,90,2bbl,2.97,3.23,9.41,68,5500,37,41,5572 24 | 23,1,dodge challenger se,gas,std,two,hatchback,fwd,front,93.7,157.3,63.8,50.8,1876,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,6377 25 | 24,1,dodge d200,gas,turbo,two,hatchback,fwd,front,93.7,157.3,63.8,50.8,2128,ohc,four,98,mpfi,3.03,3.39,7.6,102,5500,24,30,7957 26 | 25,1,dodge monaco (sw),gas,std,four,hatchback,fwd,front,93.7,157.3,63.8,50.6,1967,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,6229 27 | 26,1,dodge colt hardtop,gas,std,four,sedan,fwd,front,93.7,157.3,63.8,50.6,1989,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,6692 28 | 27,1,dodge colt (sw),gas,std,four,sedan,fwd,front,93.7,157.3,63.8,50.6,1989,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,7609 29 | 28,1,dodge coronet custom,gas,turbo,two,sedan,fwd,front,93.7,157.3,63.8,50.6,2191,ohc,four,98,mpfi,3.03,3.39,7.6,102,5500,24,30,8558 30 | 29,-1,dodge dart custom,gas,std,four,wagon,fwd,front,103.3,174.6,64.6,59.8,2535,ohc,four,122,2bbl,3.34,3.46,8.5,88,5000,24,30,8921 31 | 30,3,dodge coronet custom (sw),gas,turbo,two,hatchback,fwd,front,95.9,173.2,66.3,50.2,2811,ohc,four,156,mfi,3.6,3.9,7,145,5000,19,24,12964 32 | 31,2,honda civic,gas,std,two,hatchback,fwd,front,86.6,144.6,63.9,50.8,1713,ohc,four,92,1bbl,2.91,3.41,9.6,58,4800,49,54,6479 33 | 32,2,honda civic cvcc,gas,std,two,hatchback,fwd,front,86.6,144.6,63.9,50.8,1819,ohc,four,92,1bbl,2.91,3.41,9.2,76,6000,31,38,6855 34 | 33,1,honda civic,gas,std,two,hatchback,fwd,front,93.7,150,64,52.6,1837,ohc,four,79,1bbl,2.91,3.07,10.1,60,5500,38,42,5399 35 | 34,1,honda accord cvcc,gas,std,two,hatchback,fwd,front,93.7,150,64,52.6,1940,ohc,four,92,1bbl,2.91,3.41,9.2,76,6000,30,34,6529 36 | 35,1,honda civic cvcc,gas,std,two,hatchback,fwd,front,93.7,150,64,52.6,1956,ohc,four,92,1bbl,2.91,3.41,9.2,76,6000,30,34,7129 37 | 36,0,honda accord lx,gas,std,four,sedan,fwd,front,96.5,163.4,64,54.5,2010,ohc,four,92,1bbl,2.91,3.41,9.2,76,6000,30,34,7295 38 | 37,0,honda civic 1500 gl,gas,std,four,wagon,fwd,front,96.5,157.1,63.9,58.3,2024,ohc,four,92,1bbl,2.92,3.41,9.2,76,6000,30,34,7295 39 | 38,0,honda accord,gas,std,two,hatchback,fwd,front,96.5,167.5,65.2,53.3,2236,ohc,four,110,1bbl,3.15,3.58,9,86,5800,27,33,7895 40 | 39,0,honda civic 1300,gas,std,two,hatchback,fwd,front,96.5,167.5,65.2,53.3,2289,ohc,four,110,1bbl,3.15,3.58,9,86,5800,27,33,9095 41 | 40,0,honda prelude,gas,std,four,sedan,fwd,front,96.5,175.4,65.2,54.1,2304,ohc,four,110,1bbl,3.15,3.58,9,86,5800,27,33,8845 42 | 41,0,honda accord,gas,std,four,sedan,fwd,front,96.5,175.4,62.5,54.1,2372,ohc,four,110,1bbl,3.15,3.58,9,86,5800,27,33,10295 43 | 42,0,honda civic,gas,std,four,sedan,fwd,front,96.5,175.4,65.2,54.1,2465,ohc,four,110,mpfi,3.15,3.58,9,101,5800,24,28,12945 44 | 43,1,honda civic (auto),gas,std,two,sedan,fwd,front,96.5,169.1,66,51,2293,ohc,four,110,2bbl,3.15,3.58,9.1,100,5500,25,31,10345 45 | 44,0,isuzu MU-X,gas,std,four,sedan,rwd,front,94.3,170.7,61.8,53.5,2337,ohc,four,111,2bbl,3.31,3.23,8.5,78,4800,24,29,6785 46 | 45,1,isuzu D-Max ,gas,std,two,sedan,fwd,front,94.5,155.9,63.6,52,1874,ohc,four,90,2bbl,3.03,3.11,9.6,70,5400,38,43,8916.5 47 | 46,0,isuzu D-Max V-Cross,gas,std,four,sedan,fwd,front,94.5,155.9,63.6,52,1909,ohc,four,90,2bbl,3.03,3.11,9.6,70,5400,38,43,8916.5 48 | 47,2,isuzu D-Max ,gas,std,two,hatchback,rwd,front,96,172.6,65.2,51.4,2734,ohc,four,119,spfi,3.43,3.23,9.2,90,5000,24,29,11048 49 | 48,0,jaguar xj,gas,std,four,sedan,rwd,front,113,199.6,69.6,52.8,4066,dohc,six,258,mpfi,3.63,4.17,8.1,176,4750,15,19,32250 50 | 49,0,jaguar xf,gas,std,four,sedan,rwd,front,113,199.6,69.6,52.8,4066,dohc,six,258,mpfi,3.63,4.17,8.1,176,4750,15,19,35550 51 | 50,0,jaguar xk,gas,std,two,sedan,rwd,front,102,191.7,70.6,47.8,3950,ohcv,twelve,326,mpfi,3.54,2.76,11.5,262,5000,13,17,36000 52 | 51,1,maxda rx3,gas,std,two,hatchback,fwd,front,93.1,159.1,64.2,54.1,1890,ohc,four,91,2bbl,3.03,3.15,9,68,5000,30,31,5195 53 | 52,1,maxda glc deluxe,gas,std,two,hatchback,fwd,front,93.1,159.1,64.2,54.1,1900,ohc,four,91,2bbl,3.03,3.15,9,68,5000,31,38,6095 54 | 53,1,mazda rx2 coupe,gas,std,two,hatchback,fwd,front,93.1,159.1,64.2,54.1,1905,ohc,four,91,2bbl,3.03,3.15,9,68,5000,31,38,6795 55 | 54,1,mazda rx-4,gas,std,four,sedan,fwd,front,93.1,166.8,64.2,54.1,1945,ohc,four,91,2bbl,3.03,3.15,9,68,5000,31,38,6695 56 | 55,1,mazda glc deluxe,gas,std,four,sedan,fwd,front,93.1,166.8,64.2,54.1,1950,ohc,four,91,2bbl,3.08,3.15,9,68,5000,31,38,7395 57 | 56,3,mazda 626,gas,std,two,hatchback,rwd,front,95.3,169,65.7,49.6,2380,rotor,two,70,4bbl,3.33,3.255,9.4,101,6000,17,23,10945 58 | 57,3,mazda glc,gas,std,two,hatchback,rwd,front,95.3,169,65.7,49.6,2380,rotor,two,70,4bbl,3.33,3.255,9.4,101,6000,17,23,11845 59 | 58,3,mazda rx-7 gs,gas,std,two,hatchback,rwd,front,95.3,169,65.7,49.6,2385,rotor,two,70,4bbl,3.33,3.255,9.4,101,6000,17,23,13645 60 | 59,3,mazda glc 4,gas,std,two,hatchback,rwd,front,95.3,169,65.7,49.6,2500,rotor,two,80,mpfi,3.33,3.255,9.4,135,6000,16,23,15645 61 | 60,1,mazda 626,gas,std,two,hatchback,fwd,front,98.8,177.8,66.5,53.7,2385,ohc,four,122,2bbl,3.39,3.39,8.6,84,4800,26,32,8845 62 | 61,0,mazda glc custom l,gas,std,four,sedan,fwd,front,98.8,177.8,66.5,55.5,2410,ohc,four,122,2bbl,3.39,3.39,8.6,84,4800,26,32,8495 63 | 62,1,mazda glc custom,gas,std,two,hatchback,fwd,front,98.8,177.8,66.5,53.7,2385,ohc,four,122,2bbl,3.39,3.39,8.6,84,4800,26,32,10595 64 | 63,0,mazda rx-4,gas,std,four,sedan,fwd,front,98.8,177.8,66.5,55.5,2410,ohc,four,122,2bbl,3.39,3.39,8.6,84,4800,26,32,10245 65 | 64,0,mazda glc deluxe,diesel,std,four,sedan,fwd,front,98.8,177.8,66.5,55.5,2443,ohc,four,122,idi,3.39,3.39,22.7,64,4650,36,42,10795 66 | 65,0,mazda 626,gas,std,four,hatchback,fwd,front,98.8,177.8,66.5,55.5,2425,ohc,four,122,2bbl,3.39,3.39,8.6,84,4800,26,32,11245 67 | 66,0,mazda glc,gas,std,four,sedan,rwd,front,104.9,175,66.1,54.4,2670,ohc,four,140,mpfi,3.76,3.16,8,120,5000,19,27,18280 68 | 67,0,mazda rx-7 gs,diesel,std,four,sedan,rwd,front,104.9,175,66.1,54.4,2700,ohc,four,134,idi,3.43,3.64,22,72,4200,31,39,18344 69 | 68,-1,buick electra 225 custom,diesel,turbo,four,sedan,rwd,front,110,190.9,70.3,56.5,3515,ohc,five,183,idi,3.58,3.64,21.5,123,4350,22,25,25552 70 | 69,-1,buick century luxus (sw),diesel,turbo,four,wagon,rwd,front,110,190.9,70.3,58.7,3750,ohc,five,183,idi,3.58,3.64,21.5,123,4350,22,25,28248 71 | 70,0,buick century,diesel,turbo,two,hardtop,rwd,front,106.7,187.5,70.3,54.9,3495,ohc,five,183,idi,3.58,3.64,21.5,123,4350,22,25,28176 72 | 71,-1,buick skyhawk,diesel,turbo,four,sedan,rwd,front,115.6,202.6,71.7,56.3,3770,ohc,five,183,idi,3.58,3.64,21.5,123,4350,22,25,31600 73 | 72,-1,buick opel isuzu deluxe,gas,std,four,sedan,rwd,front,115.6,202.6,71.7,56.5,3740,ohcv,eight,234,mpfi,3.46,3.1,8.3,155,4750,16,18,34184 74 | 73,3,buick skylark,gas,std,two,convertible,rwd,front,96.6,180.3,70.5,50.8,3685,ohcv,eight,234,mpfi,3.46,3.1,8.3,155,4750,16,18,35056 75 | 74,0,buick century special,gas,std,four,sedan,rwd,front,120.9,208.1,71.7,56.7,3900,ohcv,eight,308,mpfi,3.8,3.35,8,184,4500,14,16,40960 76 | 75,1,buick regal sport coupe (turbo),gas,std,two,hardtop,rwd,front,112,199.2,72,55.4,3715,ohcv,eight,304,mpfi,3.8,3.35,8,184,4500,14,16,45400 77 | 76,1,mercury cougar,gas,turbo,two,hatchback,rwd,front,102.7,178.4,68,54.8,2910,ohc,four,140,mpfi,3.78,3.12,8,175,5000,19,24,16503 78 | 77,2,mitsubishi mirage,gas,std,two,hatchback,fwd,front,93.7,157.3,64.4,50.8,1918,ohc,four,92,2bbl,2.97,3.23,9.4,68,5500,37,41,5389 79 | 78,2,mitsubishi lancer,gas,std,two,hatchback,fwd,front,93.7,157.3,64.4,50.8,1944,ohc,four,92,2bbl,2.97,3.23,9.4,68,5500,31,38,6189 80 | 79,2,mitsubishi outlander,gas,std,two,hatchback,fwd,front,93.7,157.3,64.4,50.8,2004,ohc,four,92,2bbl,2.97,3.23,9.4,68,5500,31,38,6669 81 | 80,1,mitsubishi g4,gas,turbo,two,hatchback,fwd,front,93,157.3,63.8,50.8,2145,ohc,four,98,spdi,3.03,3.39,7.6,102,5500,24,30,7689 82 | 81,3,mitsubishi mirage g4,gas,turbo,two,hatchback,fwd,front,96.3,173,65.4,49.4,2370,ohc,four,110,spdi,3.17,3.46,7.5,116,5500,23,30,9959 83 | 82,3,mitsubishi g4,gas,std,two,hatchback,fwd,front,96.3,173,65.4,49.4,2328,ohc,four,122,2bbl,3.35,3.46,8.5,88,5000,25,32,8499 84 | 83,3,mitsubishi outlander,gas,turbo,two,hatchback,fwd,front,95.9,173.2,66.3,50.2,2833,ohc,four,156,spdi,3.58,3.86,7,145,5000,19,24,12629 85 | 84,3,mitsubishi g4,gas,turbo,two,hatchback,fwd,front,95.9,173.2,66.3,50.2,2921,ohc,four,156,spdi,3.59,3.86,7,145,5000,19,24,14869 86 | 85,3,mitsubishi mirage g4,gas,turbo,two,hatchback,fwd,front,95.9,173.2,66.3,50.2,2926,ohc,four,156,spdi,3.59,3.86,7,145,5000,19,24,14489 87 | 86,1,mitsubishi montero,gas,std,four,sedan,fwd,front,96.3,172.4,65.4,51.6,2365,ohc,four,122,2bbl,3.35,3.46,8.5,88,5000,25,32,6989 88 | 87,1,mitsubishi pajero,gas,std,four,sedan,fwd,front,96.3,172.4,65.4,51.6,2405,ohc,four,122,2bbl,3.35,3.46,8.5,88,5000,25,32,8189 89 | 88,1,mitsubishi outlander,gas,turbo,four,sedan,fwd,front,96.3,172.4,65.4,51.6,2403,ohc,four,110,spdi,3.17,3.46,7.5,116,5500,23,30,9279 90 | 89,-1,mitsubishi mirage g4,gas,std,four,sedan,fwd,front,96.3,172.4,65.4,51.6,2403,ohc,four,110,spdi,3.17,3.46,7.5,116,5500,23,30,9279 91 | 90,1,Nissan versa,gas,std,two,sedan,fwd,front,94.5,165.3,63.8,54.5,1889,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,5499 92 | 91,1,nissan gt-r,diesel,std,two,sedan,fwd,front,94.5,165.3,63.8,54.5,2017,ohc,four,103,idi,2.99,3.47,21.9,55,4800,45,50,7099 93 | 92,1,nissan rogue,gas,std,two,sedan,fwd,front,94.5,165.3,63.8,54.5,1918,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,6649 94 | 93,1,nissan latio,gas,std,four,sedan,fwd,front,94.5,165.3,63.8,54.5,1938,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,6849 95 | 94,1,nissan titan,gas,std,four,wagon,fwd,front,94.5,170.2,63.8,53.5,2024,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,7349 96 | 95,1,nissan leaf,gas,std,two,sedan,fwd,front,94.5,165.3,63.8,54.5,1951,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,7299 97 | 96,1,nissan juke,gas,std,two,hatchback,fwd,front,94.5,165.6,63.8,53.3,2028,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,7799 98 | 97,1,nissan latio,gas,std,four,sedan,fwd,front,94.5,165.3,63.8,54.5,1971,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,7499 99 | 98,1,nissan note,gas,std,four,wagon,fwd,front,94.5,170.2,63.8,53.5,2037,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,7999 100 | 99,2,nissan clipper,gas,std,two,hardtop,fwd,front,95.1,162.4,63.8,53.3,2008,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,8249 101 | 100,0,nissan rogue,gas,std,four,hatchback,fwd,front,97.2,173.4,65.2,54.7,2324,ohc,four,120,2bbl,3.33,3.47,8.5,97,5200,27,34,8949 102 | 101,0,nissan nv200,gas,std,four,sedan,fwd,front,97.2,173.4,65.2,54.7,2302,ohc,four,120,2bbl,3.33,3.47,8.5,97,5200,27,34,9549 103 | 102,0,nissan dayz,gas,std,four,sedan,fwd,front,100.4,181.7,66.5,55.1,3095,ohcv,six,181,mpfi,3.43,3.27,9,152,5200,17,22,13499 104 | 103,0,nissan fuga,gas,std,four,wagon,fwd,front,100.4,184.6,66.5,56.1,3296,ohcv,six,181,mpfi,3.43,3.27,9,152,5200,17,22,14399 105 | 104,0,nissan otti,gas,std,four,sedan,fwd,front,100.4,184.6,66.5,55.1,3060,ohcv,six,181,mpfi,3.43,3.27,9,152,5200,19,25,13499 106 | 105,3,nissan teana,gas,std,two,hatchback,rwd,front,91.3,170.7,67.9,49.7,3071,ohcv,six,181,mpfi,3.43,3.27,9,160,5200,19,25,17199 107 | 106,3,nissan kicks,gas,turbo,two,hatchback,rwd,front,91.3,170.7,67.9,49.7,3139,ohcv,six,181,mpfi,3.43,3.27,7.8,200,5200,17,23,19699 108 | 107,1,nissan clipper,gas,std,two,hatchback,rwd,front,99.2,178.5,67.9,49.7,3139,ohcv,six,181,mpfi,3.43,3.27,9,160,5200,19,25,18399 109 | 108,0,peugeot 504,gas,std,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3020,l,four,120,mpfi,3.46,3.19,8.4,97,5000,19,24,11900 110 | 109,0,peugeot 304,diesel,turbo,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3197,l,four,152,idi,3.7,3.52,21,95,4150,28,33,13200 111 | 110,0,peugeot 504 (sw),gas,std,four,wagon,rwd,front,114.2,198.9,68.4,58.7,3230,l,four,120,mpfi,3.46,3.19,8.4,97,5000,19,24,12440 112 | 111,0,peugeot 504,diesel,turbo,four,wagon,rwd,front,114.2,198.9,68.4,58.7,3430,l,four,152,idi,3.7,3.52,21,95,4150,25,25,13860 113 | 112,0,peugeot 504,gas,std,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3075,l,four,120,mpfi,3.46,2.19,8.4,95,5000,19,24,15580 114 | 113,0,peugeot 604sl,diesel,turbo,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3252,l,four,152,idi,3.7,3.52,21,95,4150,28,33,16900 115 | 114,0,peugeot 504,gas,std,four,wagon,rwd,front,114.2,198.9,68.4,56.7,3285,l,four,120,mpfi,3.46,2.19,8.4,95,5000,19,24,16695 116 | 115,0,peugeot 505s turbo diesel,diesel,turbo,four,wagon,rwd,front,114.2,198.9,68.4,58.7,3485,l,four,152,idi,3.7,3.52,21,95,4150,25,25,17075 117 | 116,0,peugeot 504,gas,std,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3075,l,four,120,mpfi,3.46,3.19,8.4,97,5000,19,24,16630 118 | 117,0,peugeot 504,diesel,turbo,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3252,l,four,152,idi,3.7,3.52,21,95,4150,28,33,17950 119 | 118,0,peugeot 604sl,gas,turbo,four,sedan,rwd,front,108,186.7,68.3,56,3130,l,four,134,mpfi,3.61,3.21,7,142,5600,18,24,18150 120 | 119,1,plymouth fury iii,gas,std,two,hatchback,fwd,front,93.7,157.3,63.8,50.8,1918,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,37,41,5572 121 | 120,1,plymouth cricket,gas,turbo,two,hatchback,fwd,front,93.7,157.3,63.8,50.8,2128,ohc,four,98,spdi,3.03,3.39,7.6,102,5500,24,30,7957 122 | 121,1,plymouth fury iii,gas,std,four,hatchback,fwd,front,93.7,157.3,63.8,50.6,1967,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,6229 123 | 122,1,plymouth satellite custom (sw),gas,std,four,sedan,fwd,front,93.7,167.3,63.8,50.8,1989,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,6692 124 | 123,1,plymouth fury gran sedan,gas,std,four,sedan,fwd,front,93.7,167.3,63.8,50.8,2191,ohc,four,98,2bbl,2.97,3.23,9.4,68,5500,31,38,7609 125 | 124,-1,plymouth valiant,gas,std,four,wagon,fwd,front,103.3,174.6,64.6,59.8,2535,ohc,four,122,2bbl,3.35,3.46,8.5,88,5000,24,30,8921 126 | 125,3,plymouth duster,gas,turbo,two,hatchback,rwd,front,95.9,173.2,66.3,50.2,2818,ohc,four,156,spdi,3.59,3.86,7,145,5000,19,24,12764 127 | 126,3,porsche macan,gas,std,two,hatchback,rwd,front,94.5,168.9,68.3,50.2,2778,ohc,four,151,mpfi,3.94,3.11,9.5,143,5500,19,27,22018 128 | 127,3,porcshce panamera,gas,std,two,hardtop,rwd,rear,89.5,168.9,65,51.6,2756,ohcf,six,194,mpfi,3.74,2.9,9.5,207,5900,17,25,32528 129 | 128,3,porsche cayenne,gas,std,two,hardtop,rwd,rear,89.5,168.9,65,51.6,2756,ohcf,six,194,mpfi,3.74,2.9,9.5,207,5900,17,25,34028 130 | 129,3,porsche boxter,gas,std,two,convertible,rwd,rear,89.5,168.9,65,51.6,2800,ohcf,six,194,mpfi,3.74,2.9,9.5,207,5900,17,25,37028 131 | 130,1,porsche cayenne,gas,std,two,hatchback,rwd,front,98.4,175.7,72.3,50.5,3366,dohcv,eight,203,mpfi,3.94,3.11,10,288,5750,17,28,31400.5 132 | 131,0,renault 12tl,gas,std,four,wagon,fwd,front,96.1,181.5,66.5,55.2,2579,ohc,four,132,mpfi,3.46,3.9,8.7,90,5100,23,31,9295 133 | 132,2,renault 5 gtl,gas,std,two,hatchback,fwd,front,96.1,176.8,66.6,50.5,2460,ohc,four,132,mpfi,3.46,3.9,8.7,90,5100,23,31,9895 134 | 133,3,saab 99e,gas,std,two,hatchback,fwd,front,99.1,186.6,66.5,56.1,2658,ohc,four,121,mpfi,3.54,3.07,9.31,110,5250,21,28,11850 135 | 134,2,saab 99le,gas,std,four,sedan,fwd,front,99.1,186.6,66.5,56.1,2695,ohc,four,121,mpfi,3.54,3.07,9.3,110,5250,21,28,12170 136 | 135,3,saab 99le,gas,std,two,hatchback,fwd,front,99.1,186.6,66.5,56.1,2707,ohc,four,121,mpfi,2.54,2.07,9.3,110,5250,21,28,15040 137 | 136,2,saab 99gle,gas,std,four,sedan,fwd,front,99.1,186.6,66.5,56.1,2758,ohc,four,121,mpfi,3.54,3.07,9.3,110,5250,21,28,15510 138 | 137,3,saab 99gle,gas,turbo,two,hatchback,fwd,front,99.1,186.6,66.5,56.1,2808,dohc,four,121,mpfi,3.54,3.07,9,160,5500,19,26,18150 139 | 138,2,saab 99e,gas,turbo,four,sedan,fwd,front,99.1,186.6,66.5,56.1,2847,dohc,four,121,mpfi,3.54,3.07,9,160,5500,19,26,18620 140 | 139,2,subaru,gas,std,two,hatchback,fwd,front,93.7,156.9,63.4,53.7,2050,ohcf,four,97,2bbl,3.62,2.36,9,69,4900,31,36,5118 141 | 140,2,subaru dl,gas,std,two,hatchback,fwd,front,93.7,157.9,63.6,53.7,2120,ohcf,four,108,2bbl,3.62,2.64,8.7,73,4400,26,31,7053 142 | 141,2,subaru dl,gas,std,two,hatchback,4wd,front,93.3,157.3,63.8,55.7,2240,ohcf,four,108,2bbl,3.62,2.64,8.7,73,4400,26,31,7603 143 | 142,0,subaru,gas,std,four,sedan,fwd,front,97.2,172,65.4,52.5,2145,ohcf,four,108,2bbl,3.62,2.64,9.5,82,4800,32,37,7126 144 | 143,0,subaru brz,gas,std,four,sedan,fwd,front,97.2,172,65.4,52.5,2190,ohcf,four,108,2bbl,3.62,2.64,9.5,82,4400,28,33,7775 145 | 144,0,subaru baja,gas,std,four,sedan,fwd,front,97.2,172,65.4,52.5,2340,ohcf,four,108,mpfi,3.62,2.64,9,94,5200,26,32,9960 146 | 145,0,subaru r1,gas,std,four,sedan,4wd,front,97,172,65.4,54.3,2385,ohcf,four,108,2bbl,3.62,2.64,9,82,4800,24,25,9233 147 | 146,0,subaru r2,gas,turbo,four,sedan,4wd,front,97,172,65.4,54.3,2510,ohcf,four,108,mpfi,3.62,2.64,7.7,111,4800,24,29,11259 148 | 147,0,subaru trezia,gas,std,four,wagon,fwd,front,97,173.5,65.4,53,2290,ohcf,four,108,2bbl,3.62,2.64,9,82,4800,28,32,7463 149 | 148,0,subaru tribeca,gas,std,four,wagon,fwd,front,97,173.5,65.4,53,2455,ohcf,four,108,mpfi,3.62,2.64,9,94,5200,25,31,10198 150 | 149,0,subaru dl,gas,std,four,wagon,4wd,front,96.9,173.6,65.4,54.9,2420,ohcf,four,108,2bbl,3.62,2.64,9,82,4800,23,29,8013 151 | 150,0,subaru dl,gas,turbo,four,wagon,4wd,front,96.9,173.6,65.4,54.9,2650,ohcf,four,108,mpfi,3.62,2.64,7.7,111,4800,23,23,11694 152 | 151,1,toyota corona mark ii,gas,std,two,hatchback,fwd,front,95.7,158.7,63.6,54.5,1985,ohc,four,92,2bbl,3.05,3.03,9,62,4800,35,39,5348 153 | 152,1,toyota corona,gas,std,two,hatchback,fwd,front,95.7,158.7,63.6,54.5,2040,ohc,four,92,2bbl,3.05,3.03,9,62,4800,31,38,6338 154 | 153,1,toyota corolla 1200,gas,std,four,hatchback,fwd,front,95.7,158.7,63.6,54.5,2015,ohc,four,92,2bbl,3.05,3.03,9,62,4800,31,38,6488 155 | 154,0,toyota corona hardtop,gas,std,four,wagon,fwd,front,95.7,169.7,63.6,59.1,2280,ohc,four,92,2bbl,3.05,3.03,9,62,4800,31,37,6918 156 | 155,0,toyota corolla 1600 (sw),gas,std,four,wagon,4wd,front,95.7,169.7,63.6,59.1,2290,ohc,four,92,2bbl,3.05,3.03,9,62,4800,27,32,7898 157 | 156,0,toyota carina,gas,std,four,wagon,4wd,front,95.7,169.7,63.6,59.1,3110,ohc,four,92,2bbl,3.05,3.03,9,62,4800,27,32,8778 158 | 157,0,toyota mark ii,gas,std,four,sedan,fwd,front,95.7,166.3,64.4,53,2081,ohc,four,98,2bbl,3.19,3.03,9,70,4800,30,37,6938 159 | 158,0,toyota corolla 1200,gas,std,four,hatchback,fwd,front,95.7,166.3,64.4,52.8,2109,ohc,four,98,2bbl,3.19,3.03,9,70,4800,30,37,7198 160 | 159,0,toyota corona,diesel,std,four,sedan,fwd,front,95.7,166.3,64.4,53,2275,ohc,four,110,idi,3.27,3.35,22.5,56,4500,34,36,7898 161 | 160,0,toyota corolla,diesel,std,four,hatchback,fwd,front,95.7,166.3,64.4,52.8,2275,ohc,four,110,idi,3.27,3.35,22.5,56,4500,38,47,7788 162 | 161,0,toyota corona,gas,std,four,sedan,fwd,front,95.7,166.3,64.4,53,2094,ohc,four,98,2bbl,3.19,3.03,9,70,4800,38,47,7738 163 | 162,0,toyota corolla,gas,std,four,hatchback,fwd,front,95.7,166.3,64.4,52.8,2122,ohc,four,98,2bbl,3.19,3.03,9,70,4800,28,34,8358 164 | 163,0,toyota mark ii,gas,std,four,sedan,fwd,front,95.7,166.3,64.4,52.8,2140,ohc,four,98,2bbl,3.19,3.03,9,70,4800,28,34,9258 165 | 164,1,toyota corolla liftback,gas,std,two,sedan,rwd,front,94.5,168.7,64,52.6,2169,ohc,four,98,2bbl,3.19,3.03,9,70,4800,29,34,8058 166 | 165,1,toyota corona,gas,std,two,hatchback,rwd,front,94.5,168.7,64,52.6,2204,ohc,four,98,2bbl,3.19,3.03,9,70,4800,29,34,8238 167 | 166,1,toyota celica gt liftback,gas,std,two,sedan,rwd,front,94.5,168.7,64,52.6,2265,dohc,four,98,mpfi,3.24,3.08,9.4,112,6600,26,29,9298 168 | 167,1,toyota corolla tercel,gas,std,two,hatchback,rwd,front,94.5,168.7,64,52.6,2300,dohc,four,98,mpfi,3.24,3.08,9.4,112,6600,26,29,9538 169 | 168,2,toyota corona liftback,gas,std,two,hardtop,rwd,front,98.4,176.2,65.6,52,2540,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,8449 170 | 169,2,toyota corolla,gas,std,two,hardtop,rwd,front,98.4,176.2,65.6,52,2536,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,9639 171 | 170,2,toyota starlet,gas,std,two,hatchback,rwd,front,98.4,176.2,65.6,52,2551,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,9989 172 | 171,2,toyota tercel,gas,std,two,hardtop,rwd,front,98.4,176.2,65.6,52,2679,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,11199 173 | 172,2,toyota corolla,gas,std,two,hatchback,rwd,front,98.4,176.2,65.6,52,2714,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,11549 174 | 173,2,toyota cressida,gas,std,two,convertible,rwd,front,98.4,176.2,65.6,53,2975,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,17669 175 | 174,-1,toyota corolla,gas,std,four,sedan,fwd,front,102.4,175.6,66.5,54.9,2326,ohc,four,122,mpfi,3.31,3.54,8.7,92,4200,29,34,8948 176 | 175,-1,toyota celica gt,diesel,turbo,four,sedan,fwd,front,102.4,175.6,66.5,54.9,2480,ohc,four,110,idi,3.27,3.35,22.5,73,4500,30,33,10698 177 | 176,-1,toyota corona,gas,std,four,hatchback,fwd,front,102.4,175.6,66.5,53.9,2414,ohc,four,122,mpfi,3.31,3.54,8.7,92,4200,27,32,9988 178 | 177,-1,toyota corolla,gas,std,four,sedan,fwd,front,102.4,175.6,66.5,54.9,2414,ohc,four,122,mpfi,3.31,3.54,8.7,92,4200,27,32,10898 179 | 178,-1,toyota mark ii,gas,std,four,hatchback,fwd,front,102.4,175.6,66.5,53.9,2458,ohc,four,122,mpfi,3.31,3.54,8.7,92,4200,27,32,11248 180 | 179,3,toyota corolla liftback,gas,std,two,hatchback,rwd,front,102.9,183.5,67.7,52,2976,dohc,six,171,mpfi,3.27,3.35,9.3,161,5200,20,24,16558 181 | 180,3,toyota corona,gas,std,two,hatchback,rwd,front,102.9,183.5,67.7,52,3016,dohc,six,171,mpfi,3.27,3.35,9.3,161,5200,19,24,15998 182 | 181,-1,toyota starlet,gas,std,four,sedan,rwd,front,104.5,187.8,66.5,54.1,3131,dohc,six,171,mpfi,3.27,3.35,9.2,156,5200,20,24,15690 183 | 182,-1,toyouta tercel,gas,std,four,wagon,rwd,front,104.5,187.8,66.5,54.1,3151,dohc,six,161,mpfi,3.27,3.35,9.2,156,5200,19,24,15750 184 | 183,2,vokswagen rabbit,diesel,std,two,sedan,fwd,front,97.3,171.7,65.5,55.7,2261,ohc,four,97,idi,3.01,3.4,23,52,4800,37,46,7775 185 | 184,2,volkswagen 1131 deluxe sedan,gas,std,two,sedan,fwd,front,97.3,171.7,65.5,55.7,2209,ohc,four,109,mpfi,3.19,3.4,9,85,5250,27,34,7975 186 | 185,2,volkswagen model 111,diesel,std,four,sedan,fwd,front,97.3,171.7,65.5,55.7,2264,ohc,four,97,idi,3.01,3.4,23,52,4800,37,46,7995 187 | 186,2,volkswagen type 3,gas,std,four,sedan,fwd,front,97.3,171.7,65.5,55.7,2212,ohc,four,109,mpfi,3.19,3.4,9,85,5250,27,34,8195 188 | 187,2,volkswagen 411 (sw),gas,std,four,sedan,fwd,front,97.3,171.7,65.5,55.7,2275,ohc,four,109,mpfi,3.19,3.4,9,85,5250,27,34,8495 189 | 188,2,volkswagen super beetle,diesel,turbo,four,sedan,fwd,front,97.3,171.7,65.5,55.7,2319,ohc,four,97,idi,3.01,3.4,23,68,4500,37,42,9495 190 | 189,2,volkswagen dasher,gas,std,four,sedan,fwd,front,97.3,171.7,65.5,55.7,2300,ohc,four,109,mpfi,3.19,3.4,10,100,5500,26,32,9995 191 | 190,3,vw dasher,gas,std,two,convertible,fwd,front,94.5,159.3,64.2,55.6,2254,ohc,four,109,mpfi,3.19,3.4,8.5,90,5500,24,29,11595 192 | 191,3,vw rabbit,gas,std,two,hatchback,fwd,front,94.5,165.7,64,51.4,2221,ohc,four,109,mpfi,3.19,3.4,8.5,90,5500,24,29,9980 193 | 192,0,volkswagen rabbit,gas,std,four,sedan,fwd,front,100.4,180.2,66.9,55.1,2661,ohc,five,136,mpfi,3.19,3.4,8.5,110,5500,19,24,13295 194 | 193,0,volkswagen rabbit custom,diesel,turbo,four,sedan,fwd,front,100.4,180.2,66.9,55.1,2579,ohc,four,97,idi,3.01,3.4,23,68,4500,33,38,13845 195 | 194,0,volkswagen dasher,gas,std,four,wagon,fwd,front,100.4,183.1,66.9,55.1,2563,ohc,four,109,mpfi,3.19,3.4,9,88,5500,25,31,12290 196 | 195,-2,volvo 145e (sw),gas,std,four,sedan,rwd,front,104.3,188.8,67.2,56.2,2912,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,23,28,12940 197 | 196,-1,volvo 144ea,gas,std,four,wagon,rwd,front,104.3,188.8,67.2,57.5,3034,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,23,28,13415 198 | 197,-2,volvo 244dl,gas,std,four,sedan,rwd,front,104.3,188.8,67.2,56.2,2935,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,24,28,15985 199 | 198,-1,volvo 245,gas,std,four,wagon,rwd,front,104.3,188.8,67.2,57.5,3042,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,24,28,16515 200 | 199,-2,volvo 264gl,gas,turbo,four,sedan,rwd,front,104.3,188.8,67.2,56.2,3045,ohc,four,130,mpfi,3.62,3.15,7.5,162,5100,17,22,18420 201 | 200,-1,volvo diesel,gas,turbo,four,wagon,rwd,front,104.3,188.8,67.2,57.5,3157,ohc,four,130,mpfi,3.62,3.15,7.5,162,5100,17,22,18950 202 | 201,-1,volvo 145e (sw),gas,std,four,sedan,rwd,front,109.1,188.8,68.9,55.5,2952,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,23,28,16845 203 | 202,-1,volvo 144ea,gas,turbo,four,sedan,rwd,front,109.1,188.8,68.8,55.5,3049,ohc,four,141,mpfi,3.78,3.15,8.7,160,5300,19,25,19045 204 | 203,-1,volvo 244dl,gas,std,four,sedan,rwd,front,109.1,188.8,68.9,55.5,3012,ohcv,six,173,mpfi,3.58,2.87,8.8,134,5500,18,23,21485 205 | 204,-1,volvo 246,diesel,turbo,four,sedan,rwd,front,109.1,188.8,68.9,55.5,3217,ohc,six,145,idi,3.01,3.4,23,106,4800,26,27,22470 206 | 205,-1,volvo 264gl,gas,turbo,four,sedan,rwd,front,109.1,188.8,68.9,55.5,3062,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,19,25,22625 207 | -------------------------------------------------------------------------------- /16. Advanced Machine Learning Algorithms/AdvanceReg/AdvanceReg/Car_price_data_Dictonary.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/16. Advanced Machine Learning Algorithms/AdvanceReg/AdvanceReg/Car_price_data_Dictonary.xlsx -------------------------------------------------------------------------------- /16. Advanced Machine Learning Algorithms/AdvanceReg/AdvanceReg/total-electricity-consumption-us (1).csv: -------------------------------------------------------------------------------- 1 | Year,Consumption 2 | 1920,57125 3 | 1921,53656 4 | 1922,61816 5 | 1923,72113 6 | 1924,76651 7 | 1925,85513 8 | 1926,95164 9 | 1927,102404 10 | 1928,109150 11 | 1929,117914 12 | 1930,115783 13 | 1931,110467 14 | 1932,100353 15 | 1933,103682 16 | 1934,111508 17 | 1935,120124 18 | 1936,137366 19 | 1937,147941 20 | 1938,143375 21 | 1939,162921 22 | 1940,181706 23 | 1941,210389 24 | 1942,235477 25 | 1943,270215 26 | 1944,283718 27 | 1945,275028 28 | 1946,276044 29 | 1947,313926 30 | 1948,343410 31 | 1949,351831 32 | 1950,396346 33 | 1951,442046 34 | 1952,472071 35 | 1953,522419 36 | 1954,553727 37 | 1955,633078 38 | 1956,689352 39 | 1957,719957 40 | 1958,728070 41 | 1959,798858 42 | 1960,848723 43 | 1961,883749 44 | 1962,947018 45 | 1963,1011515 46 | 1964,1085696 47 | 1965,1157442 48 | 1966,1250536 49 | 1967,1317001 50 | 1968,1435398 51 | 1969,1553829 52 | 1970,1641731 -------------------------------------------------------------------------------- /16. Advanced Machine Learning Algorithms/AdvanceReg/AdvanceReg/total-electricity-consumption-us.csv: -------------------------------------------------------------------------------- 1 | Year,Consumption 2 | 1920,57125 3 | 1921,53656 4 | 1922,61816 5 | 1923,72113 6 | 1924,76651 7 | 1925,85513 8 | 1926,95164 9 | 1927,102404 10 | 1928,109150 11 | 1929,117914 12 | 1930,115783 13 | 1931,110467 14 | 1932,100353 15 | 1933,103682 16 | 1934,111508 17 | 1935,120124 18 | 1936,137366 19 | 1937,147941 20 | 1938,143375 21 | 1939,162921 22 | 1940,181706 23 | 1941,210389 24 | 1942,235477 25 | 1943,270215 26 | 1944,283718 27 | 1945,275028 28 | 1946,276044 29 | 1947,313926 30 | 1948,343410 31 | 1949,351831 32 | 1950,396346 33 | 1951,442046 34 | 1952,472071 35 | 1953,522419 36 | 1954,553727 37 | 1955,633078 38 | 1956,689352 39 | 1957,719957 40 | 1958,728070 41 | 1959,798858 42 | 1960,848723 43 | 1961,883749 44 | 1962,947018 45 | 1963,1011515 46 | 1964,1085696 47 | 1965,1157442 48 | 1966,1250536 49 | 1967,1317001 50 | 1968,1435398 51 | 1969,1553829 52 | 1970,1641731 -------------------------------------------------------------------------------- /19. Quora Project/Quora Project/Quora Project/Quora Project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/19. Quora Project/Quora Project/Quora Project/Quora Project.zip -------------------------------------------------------------------------------- /2. Multiple Linear Regression/Multiple Linear Regression/Multiple_Linear_Regression/Housing.csv: -------------------------------------------------------------------------------- 1 | price,area,bedrooms,bathrooms,stories,mainroad,guestroom,basement,hotwaterheating,airconditioning,parking,prefarea,furnishingstatus 2 | 13300000,7420,4,2,3,yes,no,no,no,yes,2,yes,furnished 3 | 12250000,8960,4,4,4,yes,no,no,no,yes,3,no,furnished 4 | 12250000,9960,3,2,2,yes,no,yes,no,no,2,yes,semi-furnished 5 | 12215000,7500,4,2,2,yes,no,yes,no,yes,3,yes,furnished 6 | 11410000,7420,4,1,2,yes,yes,yes,no,yes,2,no,furnished 7 | 10850000,7500,3,3,1,yes,no,yes,no,yes,2,yes,semi-furnished 8 | 10150000,8580,4,3,4,yes,no,no,no,yes,2,yes,semi-furnished 9 | 10150000,16200,5,3,2,yes,no,no,no,no,0,no,unfurnished 10 | 9870000,8100,4,1,2,yes,yes,yes,no,yes,2,yes,furnished 11 | 9800000,5750,3,2,4,yes,yes,no,no,yes,1,yes,unfurnished 12 | 9800000,13200,3,1,2,yes,no,yes,no,yes,2,yes,furnished 13 | 9681000,6000,4,3,2,yes,yes,yes,yes,no,2,no,semi-furnished 14 | 9310000,6550,4,2,2,yes,no,no,no,yes,1,yes,semi-furnished 15 | 9240000,3500,4,2,2,yes,no,no,yes,no,2,no,furnished 16 | 9240000,7800,3,2,2,yes,no,no,no,no,0,yes,semi-furnished 17 | 9100000,6000,4,1,2,yes,no,yes,no,no,2,no,semi-furnished 18 | 9100000,6600,4,2,2,yes,yes,yes,no,yes,1,yes,unfurnished 19 | 8960000,8500,3,2,4,yes,no,no,no,yes,2,no,furnished 20 | 8890000,4600,3,2,2,yes,yes,no,no,yes,2,no,furnished 21 | 8855000,6420,3,2,2,yes,no,no,no,yes,1,yes,semi-furnished 22 | 8750000,4320,3,1,2,yes,no,yes,yes,no,2,no,semi-furnished 23 | 8680000,7155,3,2,1,yes,yes,yes,no,yes,2,no,unfurnished 24 | 8645000,8050,3,1,1,yes,yes,yes,no,yes,1,no,furnished 25 | 8645000,4560,3,2,2,yes,yes,yes,no,yes,1,no,furnished 26 | 8575000,8800,3,2,2,yes,no,no,no,yes,2,no,furnished 27 | 8540000,6540,4,2,2,yes,yes,yes,no,yes,2,yes,furnished 28 | 8463000,6000,3,2,4,yes,yes,yes,no,yes,0,yes,semi-furnished 29 | 8400000,8875,3,1,1,yes,no,no,no,no,1,no,semi-furnished 30 | 8400000,7950,5,2,2,yes,no,yes,yes,no,2,no,unfurnished 31 | 8400000,5500,4,2,2,yes,no,yes,no,yes,1,yes,semi-furnished 32 | 8400000,7475,3,2,4,yes,no,no,no,yes,2,no,unfurnished 33 | 8400000,7000,3,1,4,yes,no,no,no,yes,2,no,semi-furnished 34 | 8295000,4880,4,2,2,yes,no,no,no,yes,1,yes,furnished 35 | 8190000,5960,3,3,2,yes,yes,yes,no,no,1,no,unfurnished 36 | 8120000,6840,5,1,2,yes,yes,yes,no,yes,1,no,furnished 37 | 8080940,7000,3,2,4,yes,no,no,no,yes,2,no,furnished 38 | 8043000,7482,3,2,3,yes,no,no,yes,no,1,yes,furnished 39 | 7980000,9000,4,2,4,yes,no,no,no,yes,2,no,furnished 40 | 7962500,6000,3,1,4,yes,yes,no,no,yes,2,no,unfurnished 41 | 7910000,6000,4,2,4,yes,no,no,no,yes,1,no,semi-furnished 42 | 7875000,6550,3,1,2,yes,no,yes,no,yes,0,yes,furnished 43 | 7840000,6360,3,2,4,yes,no,no,no,yes,0,yes,furnished 44 | 7700000,6480,3,2,4,yes,no,no,no,yes,2,no,unfurnished 45 | 7700000,6000,4,2,4,yes,no,no,no,no,2,no,semi-furnished 46 | 7560000,6000,4,2,4,yes,no,no,no,yes,1,no,furnished 47 | 7560000,6000,3,2,3,yes,no,no,no,yes,0,no,semi-furnished 48 | 7525000,6000,3,2,4,yes,no,no,no,yes,1,no,furnished 49 | 7490000,6600,3,1,4,yes,no,no,no,yes,3,yes,furnished 50 | 7455000,4300,3,2,2,yes,no,yes,no,no,1,no,unfurnished 51 | 7420000,7440,3,2,1,yes,yes,yes,no,yes,0,yes,semi-furnished 52 | 7420000,7440,3,2,4,yes,no,no,no,no,1,yes,unfurnished 53 | 7420000,6325,3,1,4,yes,no,no,no,yes,1,no,unfurnished 54 | 7350000,6000,4,2,4,yes,yes,no,no,yes,1,no,furnished 55 | 7350000,5150,3,2,4,yes,no,no,no,yes,2,no,semi-furnished 56 | 7350000,6000,3,2,2,yes,yes,no,no,yes,1,no,semi-furnished 57 | 7350000,6000,3,1,2,yes,no,no,no,yes,1,no,unfurnished 58 | 7343000,11440,4,1,2,yes,no,yes,no,no,1,yes,semi-furnished 59 | 7245000,9000,4,2,4,yes,yes,no,no,yes,1,yes,furnished 60 | 7210000,7680,4,2,4,yes,yes,no,no,yes,1,no,semi-furnished 61 | 7210000,6000,3,2,4,yes,yes,no,no,yes,1,no,furnished 62 | 7140000,6000,3,2,2,yes,yes,no,no,no,1,no,semi-furnished 63 | 7070000,8880,2,1,1,yes,no,no,no,yes,1,no,semi-furnished 64 | 7070000,6240,4,2,2,yes,no,no,no,yes,1,no,furnished 65 | 7035000,6360,4,2,3,yes,no,no,no,yes,2,yes,furnished 66 | 7000000,11175,3,1,1,yes,no,yes,no,yes,1,yes,furnished 67 | 6930000,8880,3,2,2,yes,no,yes,no,yes,1,no,furnished 68 | 6930000,13200,2,1,1,yes,no,yes,yes,no,1,no,furnished 69 | 6895000,7700,3,2,1,yes,no,no,no,no,2,no,unfurnished 70 | 6860000,6000,3,1,1,yes,no,no,no,yes,1,no,furnished 71 | 6790000,12090,4,2,2,yes,no,no,no,no,2,yes,furnished 72 | 6790000,4000,3,2,2,yes,no,yes,no,yes,0,yes,semi-furnished 73 | 6755000,6000,4,2,4,yes,no,no,no,yes,0,no,unfurnished 74 | 6720000,5020,3,1,4,yes,no,no,no,yes,0,yes,unfurnished 75 | 6685000,6600,2,2,4,yes,no,yes,no,no,0,yes,furnished 76 | 6650000,4040,3,1,2,yes,no,yes,yes,no,1,no,furnished 77 | 6650000,4260,4,2,2,yes,no,no,yes,no,0,no,semi-furnished 78 | 6650000,6420,3,2,3,yes,no,no,no,yes,0,yes,furnished 79 | 6650000,6500,3,2,3,yes,no,no,no,yes,0,yes,furnished 80 | 6650000,5700,3,1,1,yes,yes,yes,no,yes,2,yes,furnished 81 | 6650000,6000,3,2,3,yes,yes,no,no,yes,0,no,furnished 82 | 6629000,6000,3,1,2,yes,no,no,yes,no,1,yes,semi-furnished 83 | 6615000,4000,3,2,2,yes,no,yes,no,yes,1,no,semi-furnished 84 | 6615000,10500,3,2,1,yes,no,yes,no,yes,1,yes,furnished 85 | 6580000,6000,3,2,4,yes,no,no,no,yes,0,no,semi-furnished 86 | 6510000,3760,3,1,2,yes,no,no,yes,no,2,no,semi-furnished 87 | 6510000,8250,3,2,3,yes,no,no,no,yes,0,no,furnished 88 | 6510000,6670,3,1,3,yes,no,yes,no,no,0,yes,unfurnished 89 | 6475000,3960,3,1,1,yes,no,yes,no,no,2,no,semi-furnished 90 | 6475000,7410,3,1,1,yes,yes,yes,no,yes,2,yes,unfurnished 91 | 6440000,8580,5,3,2,yes,no,no,no,no,2,no,furnished 92 | 6440000,5000,3,1,2,yes,no,no,no,yes,0,no,semi-furnished 93 | 6419000,6750,2,1,1,yes,yes,yes,no,no,2,yes,furnished 94 | 6405000,4800,3,2,4,yes,yes,no,no,yes,0,no,furnished 95 | 6300000,7200,3,2,1,yes,no,yes,no,yes,3,no,semi-furnished 96 | 6300000,6000,4,2,4,yes,no,no,no,no,1,no,semi-furnished 97 | 6300000,4100,3,2,3,yes,no,no,no,yes,2,no,semi-furnished 98 | 6300000,9000,3,1,1,yes,no,yes,no,no,1,yes,furnished 99 | 6300000,6400,3,1,1,yes,yes,yes,no,yes,1,yes,semi-furnished 100 | 6293000,6600,3,2,3,yes,no,no,no,yes,0,yes,unfurnished 101 | 6265000,6000,4,1,3,yes,yes,yes,no,no,0,yes,unfurnished 102 | 6230000,6600,3,2,1,yes,no,yes,no,yes,0,yes,unfurnished 103 | 6230000,5500,3,1,3,yes,no,no,no,no,1,yes,unfurnished 104 | 6195000,5500,3,2,4,yes,yes,no,no,yes,1,no,semi-furnished 105 | 6195000,6350,3,2,3,yes,yes,no,no,yes,0,no,furnished 106 | 6195000,5500,3,2,1,yes,yes,yes,no,no,2,yes,furnished 107 | 6160000,4500,3,1,4,yes,no,no,no,yes,0,no,unfurnished 108 | 6160000,5450,4,2,1,yes,no,yes,no,yes,0,yes,semi-furnished 109 | 6125000,6420,3,1,3,yes,no,yes,no,no,0,yes,unfurnished 110 | 6107500,3240,4,1,3,yes,no,no,no,no,1,no,semi-furnished 111 | 6090000,6615,4,2,2,yes,yes,no,yes,no,1,no,semi-furnished 112 | 6090000,6600,3,1,1,yes,yes,yes,no,no,2,yes,semi-furnished 113 | 6090000,8372,3,1,3,yes,no,no,no,yes,2,no,unfurnished 114 | 6083000,4300,6,2,2,yes,no,no,no,no,0,no,furnished 115 | 6083000,9620,3,1,1,yes,no,yes,no,no,2,yes,furnished 116 | 6020000,6800,2,1,1,yes,yes,yes,no,no,2,no,furnished 117 | 6020000,8000,3,1,1,yes,yes,yes,no,yes,2,yes,semi-furnished 118 | 6020000,6900,3,2,1,yes,yes,yes,no,no,0,yes,unfurnished 119 | 5950000,3700,4,1,2,yes,yes,no,no,yes,0,no,furnished 120 | 5950000,6420,3,1,1,yes,no,yes,no,yes,0,yes,furnished 121 | 5950000,7020,3,1,1,yes,no,yes,no,yes,2,yes,semi-furnished 122 | 5950000,6540,3,1,1,yes,yes,yes,no,no,2,yes,furnished 123 | 5950000,7231,3,1,2,yes,yes,yes,no,yes,0,yes,semi-furnished 124 | 5950000,6254,4,2,1,yes,no,yes,no,no,1,yes,semi-furnished 125 | 5950000,7320,4,2,2,yes,no,no,no,no,0,no,furnished 126 | 5950000,6525,3,2,4,yes,no,no,no,no,1,no,furnished 127 | 5943000,15600,3,1,1,yes,no,no,no,yes,2,no,semi-furnished 128 | 5880000,7160,3,1,1,yes,no,yes,no,no,2,yes,unfurnished 129 | 5880000,6500,3,2,3,yes,no,no,no,yes,0,no,unfurnished 130 | 5873000,5500,3,1,3,yes,yes,no,no,yes,1,no,furnished 131 | 5873000,11460,3,1,3,yes,no,no,no,no,2,yes,semi-furnished 132 | 5866000,4800,3,1,1,yes,yes,yes,no,no,0,no,unfurnished 133 | 5810000,5828,4,1,4,yes,yes,no,no,no,0,no,semi-furnished 134 | 5810000,5200,3,1,3,yes,no,no,no,yes,0,no,semi-furnished 135 | 5810000,4800,3,1,3,yes,no,no,no,yes,0,no,unfurnished 136 | 5803000,7000,3,1,1,yes,no,yes,no,no,2,yes,semi-furnished 137 | 5775000,6000,3,2,4,yes,no,no,no,yes,0,no,unfurnished 138 | 5740000,5400,4,2,2,yes,no,no,no,yes,2,no,unfurnished 139 | 5740000,4640,4,1,2,yes,no,no,no,no,1,no,semi-furnished 140 | 5740000,5000,3,1,3,yes,no,no,no,yes,0,no,semi-furnished 141 | 5740000,6360,3,1,1,yes,yes,yes,no,yes,2,yes,furnished 142 | 5740000,5800,3,2,4,yes,no,no,no,yes,0,no,unfurnished 143 | 5652500,6660,4,2,2,yes,yes,yes,no,no,1,yes,semi-furnished 144 | 5600000,10500,4,2,2,yes,no,no,no,no,1,no,semi-furnished 145 | 5600000,4800,5,2,3,no,no,yes,yes,no,0,no,unfurnished 146 | 5600000,4700,4,1,2,yes,yes,yes,no,yes,1,no,furnished 147 | 5600000,5000,3,1,4,yes,no,no,no,no,0,no,furnished 148 | 5600000,10500,2,1,1,yes,no,no,no,no,1,no,semi-furnished 149 | 5600000,5500,3,2,2,yes,no,no,no,no,1,no,semi-furnished 150 | 5600000,6360,3,1,3,yes,no,no,no,no,0,yes,semi-furnished 151 | 5600000,6600,4,2,1,yes,no,yes,no,no,0,yes,semi-furnished 152 | 5600000,5136,3,1,2,yes,yes,yes,no,yes,0,yes,unfurnished 153 | 5565000,4400,4,1,2,yes,no,no,no,yes,2,yes,semi-furnished 154 | 5565000,5400,5,1,2,yes,yes,yes,no,yes,0,yes,furnished 155 | 5530000,3300,3,3,2,yes,no,yes,no,no,0,no,semi-furnished 156 | 5530000,3650,3,2,2,yes,no,no,no,no,2,no,semi-furnished 157 | 5530000,6100,3,2,1,yes,no,yes,no,no,2,yes,furnished 158 | 5523000,6900,3,1,1,yes,yes,yes,no,no,0,yes,semi-furnished 159 | 5495000,2817,4,2,2,no,yes,yes,no,no,1,no,furnished 160 | 5495000,7980,3,1,1,yes,no,no,no,no,2,no,semi-furnished 161 | 5460000,3150,3,2,1,yes,yes,yes,no,yes,0,no,furnished 162 | 5460000,6210,4,1,4,yes,yes,no,no,yes,0,no,furnished 163 | 5460000,6100,3,1,3,yes,yes,no,no,yes,0,yes,semi-furnished 164 | 5460000,6600,4,2,2,yes,yes,yes,no,no,0,yes,semi-furnished 165 | 5425000,6825,3,1,1,yes,yes,yes,no,yes,0,yes,semi-furnished 166 | 5390000,6710,3,2,2,yes,yes,yes,no,no,1,yes,furnished 167 | 5383000,6450,3,2,1,yes,yes,yes,yes,no,0,no,unfurnished 168 | 5320000,7800,3,1,1,yes,no,yes,no,yes,2,yes,unfurnished 169 | 5285000,4600,2,2,1,yes,no,no,no,yes,2,no,semi-furnished 170 | 5250000,4260,4,1,2,yes,no,yes,no,yes,0,no,furnished 171 | 5250000,6540,4,2,2,no,no,no,no,yes,0,no,semi-furnished 172 | 5250000,5500,3,2,1,yes,no,yes,no,no,0,no,semi-furnished 173 | 5250000,10269,3,1,1,yes,no,no,no,no,1,yes,semi-furnished 174 | 5250000,8400,3,1,2,yes,yes,yes,no,yes,2,yes,unfurnished 175 | 5250000,5300,4,2,1,yes,no,no,no,yes,0,yes,unfurnished 176 | 5250000,3800,3,1,2,yes,yes,yes,no,no,1,yes,unfurnished 177 | 5250000,9800,4,2,2,yes,yes,no,no,no,2,no,semi-furnished 178 | 5250000,8520,3,1,1,yes,no,no,no,yes,2,no,furnished 179 | 5243000,6050,3,1,1,yes,no,yes,no,no,0,yes,semi-furnished 180 | 5229000,7085,3,1,1,yes,yes,yes,no,no,2,yes,semi-furnished 181 | 5215000,3180,3,2,2,yes,no,no,no,no,2,no,semi-furnished 182 | 5215000,4500,4,2,1,no,no,yes,no,yes,2,no,semi-furnished 183 | 5215000,7200,3,1,2,yes,yes,yes,no,no,1,yes,furnished 184 | 5145000,3410,3,1,2,no,no,no,no,yes,0,no,semi-furnished 185 | 5145000,7980,3,1,1,yes,no,no,no,no,1,yes,semi-furnished 186 | 5110000,3000,3,2,2,yes,yes,yes,no,no,0,no,furnished 187 | 5110000,3000,3,1,2,yes,no,yes,no,no,0,no,unfurnished 188 | 5110000,11410,2,1,2,yes,no,no,no,no,0,yes,furnished 189 | 5110000,6100,3,1,1,yes,no,yes,no,yes,0,yes,semi-furnished 190 | 5075000,5720,2,1,2,yes,no,no,no,yes,0,yes,unfurnished 191 | 5040000,3540,2,1,1,no,yes,yes,no,no,0,no,semi-furnished 192 | 5040000,7600,4,1,2,yes,no,no,no,yes,2,no,furnished 193 | 5040000,10700,3,1,2,yes,yes,yes,no,no,0,no,semi-furnished 194 | 5040000,6600,3,1,1,yes,yes,yes,no,no,0,yes,furnished 195 | 5033000,4800,2,1,1,yes,yes,yes,no,no,0,no,semi-furnished 196 | 5005000,8150,3,2,1,yes,yes,yes,no,no,0,no,semi-furnished 197 | 4970000,4410,4,3,2,yes,no,yes,no,no,2,no,semi-furnished 198 | 4970000,7686,3,1,1,yes,yes,yes,yes,no,0,no,semi-furnished 199 | 4956000,2800,3,2,2,no,no,yes,no,yes,1,no,semi-furnished 200 | 4935000,5948,3,1,2,yes,no,no,no,yes,0,no,semi-furnished 201 | 4907000,4200,3,1,2,yes,no,no,no,no,1,no,furnished 202 | 4900000,4520,3,1,2,yes,no,yes,no,yes,0,no,semi-furnished 203 | 4900000,4095,3,1,2,no,yes,yes,no,yes,0,no,semi-furnished 204 | 4900000,4120,2,1,1,yes,no,yes,no,no,1,no,semi-furnished 205 | 4900000,5400,4,1,2,yes,no,no,no,no,0,no,semi-furnished 206 | 4900000,4770,3,1,1,yes,yes,yes,no,no,0,no,semi-furnished 207 | 4900000,6300,3,1,1,yes,no,no,no,yes,2,no,semi-furnished 208 | 4900000,5800,2,1,1,yes,yes,yes,no,yes,0,no,semi-furnished 209 | 4900000,3000,3,1,2,yes,no,yes,no,yes,0,no,semi-furnished 210 | 4900000,2970,3,1,3,yes,no,no,no,no,0,no,semi-furnished 211 | 4900000,6720,3,1,1,yes,no,no,no,no,0,no,unfurnished 212 | 4900000,4646,3,1,2,yes,yes,yes,no,no,2,no,semi-furnished 213 | 4900000,12900,3,1,1,yes,no,no,no,no,2,no,furnished 214 | 4893000,3420,4,2,2,yes,no,yes,no,yes,2,no,semi-furnished 215 | 4893000,4995,4,2,1,yes,no,yes,no,no,0,no,semi-furnished 216 | 4865000,4350,2,1,1,yes,no,yes,no,no,0,no,unfurnished 217 | 4830000,4160,3,1,3,yes,no,no,no,no,0,no,unfurnished 218 | 4830000,6040,3,1,1,yes,no,no,no,no,2,yes,semi-furnished 219 | 4830000,6862,3,1,2,yes,no,no,no,yes,2,yes,furnished 220 | 4830000,4815,2,1,1,yes,no,no,no,yes,0,yes,semi-furnished 221 | 4795000,7000,3,1,2,yes,no,yes,no,no,0,no,unfurnished 222 | 4795000,8100,4,1,4,yes,no,yes,no,yes,2,no,semi-furnished 223 | 4767000,3420,4,2,2,yes,no,no,no,no,0,no,semi-furnished 224 | 4760000,9166,2,1,1,yes,no,yes,no,yes,2,no,semi-furnished 225 | 4760000,6321,3,1,2,yes,no,yes,no,yes,1,no,furnished 226 | 4760000,10240,2,1,1,yes,no,no,no,yes,2,yes,unfurnished 227 | 4753000,6440,2,1,1,yes,no,no,no,yes,3,no,semi-furnished 228 | 4690000,5170,3,1,4,yes,no,no,no,yes,0,no,semi-furnished 229 | 4690000,6000,2,1,1,yes,no,yes,no,yes,1,no,furnished 230 | 4690000,3630,3,1,2,yes,no,no,no,no,2,no,semi-furnished 231 | 4690000,9667,4,2,2,yes,yes,yes,no,no,1,no,semi-furnished 232 | 4690000,5400,2,1,2,yes,no,no,no,no,0,yes,semi-furnished 233 | 4690000,4320,3,1,1,yes,no,no,no,no,0,yes,semi-furnished 234 | 4655000,3745,3,1,2,yes,no,yes,no,no,0,no,furnished 235 | 4620000,4160,3,1,1,yes,yes,yes,no,yes,0,no,unfurnished 236 | 4620000,3880,3,2,2,yes,no,yes,no,no,2,no,semi-furnished 237 | 4620000,5680,3,1,2,yes,yes,no,no,yes,1,no,semi-furnished 238 | 4620000,2870,2,1,2,yes,yes,yes,no,no,0,yes,semi-furnished 239 | 4620000,5010,3,1,2,yes,no,yes,no,no,0,no,semi-furnished 240 | 4613000,4510,4,2,2,yes,no,yes,no,no,0,no,semi-furnished 241 | 4585000,4000,3,1,2,yes,no,no,no,no,1,no,furnished 242 | 4585000,3840,3,1,2,yes,no,no,no,no,1,yes,semi-furnished 243 | 4550000,3760,3,1,1,yes,no,no,no,no,2,no,semi-furnished 244 | 4550000,3640,3,1,2,yes,no,no,no,yes,0,no,furnished 245 | 4550000,2550,3,1,2,yes,no,yes,no,no,0,no,furnished 246 | 4550000,5320,3,1,2,yes,yes,yes,no,no,0,yes,semi-furnished 247 | 4550000,5360,3,1,2,yes,no,no,no,no,2,yes,unfurnished 248 | 4550000,3520,3,1,1,yes,no,no,no,no,0,yes,semi-furnished 249 | 4550000,8400,4,1,4,yes,no,no,no,no,3,no,unfurnished 250 | 4543000,4100,2,2,1,yes,yes,yes,no,no,0,no,semi-furnished 251 | 4543000,4990,4,2,2,yes,yes,yes,no,no,0,yes,furnished 252 | 4515000,3510,3,1,3,yes,no,no,no,no,0,no,semi-furnished 253 | 4515000,3450,3,1,2,yes,no,yes,no,no,1,no,semi-furnished 254 | 4515000,9860,3,1,1,yes,no,no,no,no,0,no,semi-furnished 255 | 4515000,3520,2,1,2,yes,no,no,no,no,0,yes,furnished 256 | 4480000,4510,4,1,2,yes,no,no,no,yes,2,no,semi-furnished 257 | 4480000,5885,2,1,1,yes,no,no,no,yes,1,no,unfurnished 258 | 4480000,4000,3,1,2,yes,no,no,no,no,2,no,furnished 259 | 4480000,8250,3,1,1,yes,no,no,no,no,0,no,furnished 260 | 4480000,4040,3,1,2,yes,no,no,no,no,1,no,semi-furnished 261 | 4473000,6360,2,1,1,yes,no,yes,no,yes,1,no,furnished 262 | 4473000,3162,3,1,2,yes,no,no,no,yes,1,no,furnished 263 | 4473000,3510,3,1,2,yes,no,no,no,no,0,no,semi-furnished 264 | 4445000,3750,2,1,1,yes,yes,yes,no,no,0,no,semi-furnished 265 | 4410000,3968,3,1,2,no,no,no,no,no,0,no,semi-furnished 266 | 4410000,4900,2,1,2,yes,no,yes,no,no,0,no,semi-furnished 267 | 4403000,2880,3,1,2,yes,no,no,no,no,0,yes,semi-furnished 268 | 4403000,4880,3,1,1,yes,no,no,no,no,2,yes,unfurnished 269 | 4403000,4920,3,1,2,yes,no,no,no,no,1,no,semi-furnished 270 | 4382000,4950,4,1,2,yes,no,no,no,yes,0,no,semi-furnished 271 | 4375000,3900,3,1,2,yes,no,no,no,no,0,no,unfurnished 272 | 4340000,4500,3,2,3,yes,no,no,yes,no,1,no,furnished 273 | 4340000,1905,5,1,2,no,no,yes,no,no,0,no,semi-furnished 274 | 4340000,4075,3,1,1,yes,yes,yes,no,no,2,no,semi-furnished 275 | 4340000,3500,4,1,2,yes,no,no,no,no,2,no,furnished 276 | 4340000,6450,4,1,2,yes,no,no,no,no,0,no,semi-furnished 277 | 4319000,4032,2,1,1,yes,no,yes,no,no,0,no,furnished 278 | 4305000,4400,2,1,1,yes,no,no,no,no,1,no,semi-furnished 279 | 4305000,10360,2,1,1,yes,no,no,no,no,1,yes,semi-furnished 280 | 4277000,3400,3,1,2,yes,no,yes,no,no,2,yes,semi-furnished 281 | 4270000,6360,2,1,1,yes,no,no,no,no,0,no,furnished 282 | 4270000,6360,2,1,2,yes,no,no,no,no,0,no,unfurnished 283 | 4270000,4500,2,1,1,yes,no,no,no,yes,2,no,furnished 284 | 4270000,2175,3,1,2,no,yes,yes,no,yes,0,no,unfurnished 285 | 4270000,4360,4,1,2,yes,no,no,no,no,0,no,furnished 286 | 4270000,7770,2,1,1,yes,no,no,no,no,1,no,furnished 287 | 4235000,6650,3,1,2,yes,yes,no,no,no,0,no,semi-furnished 288 | 4235000,2787,3,1,1,yes,no,yes,no,no,0,yes,furnished 289 | 4200000,5500,3,1,2,yes,no,no,no,yes,0,no,unfurnished 290 | 4200000,5040,3,1,2,yes,no,yes,no,yes,0,no,unfurnished 291 | 4200000,5850,2,1,1,yes,yes,yes,no,no,2,no,semi-furnished 292 | 4200000,2610,4,3,2,no,no,no,no,no,0,no,semi-furnished 293 | 4200000,2953,3,1,2,yes,no,yes,no,yes,0,no,unfurnished 294 | 4200000,2747,4,2,2,no,no,no,no,no,0,no,semi-furnished 295 | 4200000,4410,2,1,1,no,no,no,no,no,1,no,unfurnished 296 | 4200000,4000,4,2,2,no,no,no,no,no,0,no,semi-furnished 297 | 4200000,2325,3,1,2,no,no,no,no,no,0,no,semi-furnished 298 | 4200000,4600,3,2,2,yes,no,no,no,yes,1,no,semi-furnished 299 | 4200000,3640,3,2,2,yes,no,yes,no,no,0,no,unfurnished 300 | 4200000,5800,3,1,1,yes,no,no,yes,no,2,no,semi-furnished 301 | 4200000,7000,3,1,1,yes,no,no,no,no,3,no,furnished 302 | 4200000,4079,3,1,3,yes,no,no,no,no,0,no,semi-furnished 303 | 4200000,3520,3,1,2,yes,no,no,no,no,0,yes,semi-furnished 304 | 4200000,2145,3,1,3,yes,no,no,no,no,1,yes,unfurnished 305 | 4200000,4500,3,1,1,yes,no,yes,no,no,0,no,furnished 306 | 4193000,8250,3,1,1,yes,no,yes,no,no,3,no,semi-furnished 307 | 4193000,3450,3,1,2,yes,no,no,no,no,1,no,semi-furnished 308 | 4165000,4840,3,1,2,yes,no,no,no,no,1,no,semi-furnished 309 | 4165000,4080,3,1,2,yes,no,no,no,no,2,no,semi-furnished 310 | 4165000,4046,3,1,2,yes,no,yes,no,no,1,no,semi-furnished 311 | 4130000,4632,4,1,2,yes,no,no,no,yes,0,no,semi-furnished 312 | 4130000,5985,3,1,1,yes,no,yes,no,no,0,no,semi-furnished 313 | 4123000,6060,2,1,1,yes,no,yes,no,no,1,no,semi-furnished 314 | 4098500,3600,3,1,1,yes,no,yes,no,yes,0,yes,furnished 315 | 4095000,3680,3,2,2,yes,no,no,no,no,0,no,semi-furnished 316 | 4095000,4040,2,1,2,yes,no,no,no,no,1,no,semi-furnished 317 | 4095000,5600,2,1,1,yes,no,no,no,yes,0,no,semi-furnished 318 | 4060000,5900,4,2,2,no,no,yes,no,no,1,no,unfurnished 319 | 4060000,4992,3,2,2,yes,no,no,no,no,2,no,unfurnished 320 | 4060000,4340,3,1,1,yes,no,no,no,no,0,no,semi-furnished 321 | 4060000,3000,4,1,3,yes,no,yes,no,yes,2,no,semi-furnished 322 | 4060000,4320,3,1,2,yes,no,no,no,no,2,yes,furnished 323 | 4025000,3630,3,2,2,yes,no,no,yes,no,2,no,semi-furnished 324 | 4025000,3460,3,2,1,yes,no,yes,no,yes,1,no,furnished 325 | 4025000,5400,3,1,1,yes,no,no,no,no,3,no,semi-furnished 326 | 4007500,4500,3,1,2,no,no,yes,no,yes,0,no,semi-furnished 327 | 4007500,3460,4,1,2,yes,no,no,no,yes,0,no,semi-furnished 328 | 3990000,4100,4,1,1,no,no,yes,no,no,0,no,unfurnished 329 | 3990000,6480,3,1,2,no,no,no,no,yes,1,no,semi-furnished 330 | 3990000,4500,3,2,2,no,no,yes,no,yes,0,no,semi-furnished 331 | 3990000,3960,3,1,2,yes,no,no,no,no,0,no,furnished 332 | 3990000,4050,2,1,2,yes,yes,yes,no,no,0,yes,unfurnished 333 | 3920000,7260,3,2,1,yes,yes,yes,no,no,3,no,furnished 334 | 3920000,5500,4,1,2,yes,yes,yes,no,no,0,no,semi-furnished 335 | 3920000,3000,3,1,2,yes,no,no,no,no,0,no,semi-furnished 336 | 3920000,3290,2,1,1,yes,no,no,yes,no,1,no,furnished 337 | 3920000,3816,2,1,1,yes,no,yes,no,yes,2,no,furnished 338 | 3920000,8080,3,1,1,yes,no,no,no,yes,2,no,semi-furnished 339 | 3920000,2145,4,2,1,yes,no,yes,no,no,0,yes,unfurnished 340 | 3885000,3780,2,1,2,yes,yes,yes,no,no,0,no,semi-furnished 341 | 3885000,3180,4,2,2,yes,no,no,no,no,0,no,furnished 342 | 3850000,5300,5,2,2,yes,no,no,no,no,0,no,semi-furnished 343 | 3850000,3180,2,2,1,yes,no,yes,no,no,2,no,semi-furnished 344 | 3850000,7152,3,1,2,yes,no,no,no,yes,0,no,furnished 345 | 3850000,4080,2,1,1,yes,no,no,no,no,0,no,semi-furnished 346 | 3850000,3850,2,1,1,yes,no,no,no,no,0,no,semi-furnished 347 | 3850000,2015,3,1,2,yes,no,yes,no,no,0,yes,semi-furnished 348 | 3850000,2176,2,1,2,yes,yes,no,no,no,0,yes,semi-furnished 349 | 3836000,3350,3,1,2,yes,no,no,no,no,0,no,unfurnished 350 | 3815000,3150,2,2,1,no,no,yes,no,no,0,no,semi-furnished 351 | 3780000,4820,3,1,2,yes,no,no,no,no,0,no,semi-furnished 352 | 3780000,3420,2,1,2,yes,no,no,yes,no,1,no,semi-furnished 353 | 3780000,3600,2,1,1,yes,no,no,no,no,0,no,semi-furnished 354 | 3780000,5830,2,1,1,yes,no,no,no,no,2,no,unfurnished 355 | 3780000,2856,3,1,3,yes,no,no,no,no,0,yes,furnished 356 | 3780000,8400,2,1,1,yes,no,no,no,no,1,no,furnished 357 | 3773000,8250,3,1,1,yes,no,no,no,no,2,no,furnished 358 | 3773000,2520,5,2,1,no,no,yes,no,yes,1,no,furnished 359 | 3773000,6930,4,1,2,no,no,no,no,no,1,no,furnished 360 | 3745000,3480,2,1,1,yes,no,no,no,no,0,yes,semi-furnished 361 | 3710000,3600,3,1,1,yes,no,no,no,no,1,no,unfurnished 362 | 3710000,4040,2,1,1,yes,no,no,no,no,0,no,semi-furnished 363 | 3710000,6020,3,1,1,yes,no,no,no,no,0,no,semi-furnished 364 | 3710000,4050,2,1,1,yes,no,no,no,no,0,no,furnished 365 | 3710000,3584,2,1,1,yes,no,no,yes,no,0,no,semi-furnished 366 | 3703000,3120,3,1,2,no,no,yes,yes,no,0,no,semi-furnished 367 | 3703000,5450,2,1,1,yes,no,no,no,no,0,no,furnished 368 | 3675000,3630,2,1,1,yes,no,yes,no,no,0,no,furnished 369 | 3675000,3630,2,1,1,yes,no,no,no,yes,0,no,unfurnished 370 | 3675000,5640,2,1,1,no,no,no,no,no,0,no,semi-furnished 371 | 3675000,3600,2,1,1,yes,no,no,no,no,0,no,furnished 372 | 3640000,4280,2,1,1,yes,no,no,no,yes,2,no,semi-furnished 373 | 3640000,3570,3,1,2,yes,no,yes,no,no,0,no,semi-furnished 374 | 3640000,3180,3,1,2,no,no,yes,no,no,0,no,semi-furnished 375 | 3640000,3000,2,1,2,yes,no,no,no,yes,0,no,furnished 376 | 3640000,3520,2,2,1,yes,no,yes,no,no,0,no,semi-furnished 377 | 3640000,5960,3,1,2,yes,yes,yes,no,no,0,no,unfurnished 378 | 3640000,4130,3,2,2,yes,no,no,no,no,2,no,semi-furnished 379 | 3640000,2850,3,2,2,no,no,yes,no,no,0,yes,unfurnished 380 | 3640000,2275,3,1,3,yes,no,no,yes,yes,0,yes,semi-furnished 381 | 3633000,3520,3,1,1,yes,no,no,no,no,2,yes,unfurnished 382 | 3605000,4500,2,1,1,yes,no,no,no,no,0,no,semi-furnished 383 | 3605000,4000,2,1,1,yes,no,no,no,no,0,yes,semi-furnished 384 | 3570000,3150,3,1,2,yes,no,yes,no,no,0,no,furnished 385 | 3570000,4500,4,2,2,yes,no,yes,no,no,2,no,furnished 386 | 3570000,4500,2,1,1,no,no,no,no,no,0,no,furnished 387 | 3570000,3640,2,1,1,yes,no,no,no,no,0,no,unfurnished 388 | 3535000,3850,3,1,1,yes,no,no,no,no,2,no,unfurnished 389 | 3500000,4240,3,1,2,yes,no,no,no,yes,0,no,semi-furnished 390 | 3500000,3650,3,1,2,yes,no,no,no,no,0,no,unfurnished 391 | 3500000,4600,4,1,2,yes,no,no,no,no,0,no,semi-furnished 392 | 3500000,2135,3,2,2,no,no,no,no,no,0,no,unfurnished 393 | 3500000,3036,3,1,2,yes,no,yes,no,no,0,no,semi-furnished 394 | 3500000,3990,3,1,2,yes,no,no,no,no,0,no,semi-furnished 395 | 3500000,7424,3,1,1,no,no,no,no,no,0,no,unfurnished 396 | 3500000,3480,3,1,1,no,no,no,no,yes,0,no,unfurnished 397 | 3500000,3600,6,1,2,yes,no,no,no,no,1,no,unfurnished 398 | 3500000,3640,2,1,1,yes,no,no,no,no,1,no,semi-furnished 399 | 3500000,5900,2,1,1,yes,no,no,no,no,1,no,furnished 400 | 3500000,3120,3,1,2,yes,no,no,no,no,1,no,unfurnished 401 | 3500000,7350,2,1,1,yes,no,no,no,no,1,no,semi-furnished 402 | 3500000,3512,2,1,1,yes,no,no,no,no,1,yes,unfurnished 403 | 3500000,9500,3,1,2,yes,no,no,no,no,3,yes,unfurnished 404 | 3500000,5880,2,1,1,yes,no,no,no,no,0,no,unfurnished 405 | 3500000,12944,3,1,1,yes,no,no,no,no,0,no,unfurnished 406 | 3493000,4900,3,1,2,no,no,no,no,no,0,no,unfurnished 407 | 3465000,3060,3,1,1,yes,no,no,no,no,0,no,unfurnished 408 | 3465000,5320,2,1,1,yes,no,no,no,no,1,yes,unfurnished 409 | 3465000,2145,3,1,3,yes,no,no,no,no,0,yes,furnished 410 | 3430000,4000,2,1,1,yes,no,no,no,no,0,no,unfurnished 411 | 3430000,3185,2,1,1,yes,no,no,no,no,2,no,unfurnished 412 | 3430000,3850,3,1,1,yes,no,no,no,no,0,no,unfurnished 413 | 3430000,2145,3,1,3,yes,no,no,no,no,0,yes,furnished 414 | 3430000,2610,3,1,2,yes,no,yes,no,no,0,yes,unfurnished 415 | 3430000,1950,3,2,2,yes,no,yes,no,no,0,yes,unfurnished 416 | 3423000,4040,2,1,1,yes,no,no,no,no,0,no,unfurnished 417 | 3395000,4785,3,1,2,yes,yes,yes,no,yes,1,no,furnished 418 | 3395000,3450,3,1,1,yes,no,yes,no,no,2,no,unfurnished 419 | 3395000,3640,2,1,1,yes,no,no,no,no,0,no,furnished 420 | 3360000,3500,4,1,2,yes,no,no,no,yes,2,no,unfurnished 421 | 3360000,4960,4,1,3,no,no,no,no,no,0,no,semi-furnished 422 | 3360000,4120,2,1,2,yes,no,no,no,no,0,no,unfurnished 423 | 3360000,4750,2,1,1,yes,no,no,no,no,0,no,unfurnished 424 | 3360000,3720,2,1,1,no,no,no,no,yes,0,no,unfurnished 425 | 3360000,3750,3,1,1,yes,no,no,no,no,0,no,unfurnished 426 | 3360000,3100,3,1,2,no,no,yes,no,no,0,no,semi-furnished 427 | 3360000,3185,2,1,1,yes,no,yes,no,no,2,no,furnished 428 | 3353000,2700,3,1,1,no,no,no,no,no,0,no,furnished 429 | 3332000,2145,3,1,2,yes,no,yes,no,no,0,yes,furnished 430 | 3325000,4040,2,1,1,yes,no,no,no,no,1,no,unfurnished 431 | 3325000,4775,4,1,2,yes,no,no,no,no,0,no,unfurnished 432 | 3290000,2500,2,1,1,no,no,no,no,yes,0,no,unfurnished 433 | 3290000,3180,4,1,2,yes,no,yes,no,yes,0,no,unfurnished 434 | 3290000,6060,3,1,1,yes,yes,yes,no,no,0,no,furnished 435 | 3290000,3480,4,1,2,no,no,no,no,no,1,no,semi-furnished 436 | 3290000,3792,4,1,2,yes,no,no,no,no,0,no,semi-furnished 437 | 3290000,4040,2,1,1,yes,no,no,no,no,0,no,unfurnished 438 | 3290000,2145,3,1,2,yes,no,yes,no,no,0,yes,furnished 439 | 3290000,5880,3,1,1,yes,no,no,no,no,1,no,unfurnished 440 | 3255000,4500,2,1,1,no,no,no,no,no,0,no,semi-furnished 441 | 3255000,3930,2,1,1,no,no,no,no,no,0,no,unfurnished 442 | 3234000,3640,4,1,2,yes,no,yes,no,no,0,no,unfurnished 443 | 3220000,4370,3,1,2,yes,no,no,no,no,0,no,unfurnished 444 | 3220000,2684,2,1,1,yes,no,no,no,yes,1,no,unfurnished 445 | 3220000,4320,3,1,1,no,no,no,no,no,1,no,unfurnished 446 | 3220000,3120,3,1,2,no,no,no,no,no,0,no,furnished 447 | 3150000,3450,1,1,1,yes,no,no,no,no,0,no,furnished 448 | 3150000,3986,2,2,1,no,yes,yes,no,no,1,no,unfurnished 449 | 3150000,3500,2,1,1,no,no,yes,no,no,0,no,semi-furnished 450 | 3150000,4095,2,1,1,yes,no,no,no,no,2,no,semi-furnished 451 | 3150000,1650,3,1,2,no,no,yes,no,no,0,no,unfurnished 452 | 3150000,3450,3,1,2,yes,no,yes,no,no,0,no,semi-furnished 453 | 3150000,6750,2,1,1,yes,no,no,no,no,0,no,semi-furnished 454 | 3150000,9000,3,1,2,yes,no,no,no,no,2,no,semi-furnished 455 | 3150000,3069,2,1,1,yes,no,no,no,no,1,no,unfurnished 456 | 3143000,4500,3,1,2,yes,no,no,no,yes,0,no,unfurnished 457 | 3129000,5495,3,1,1,yes,no,yes,no,no,0,no,unfurnished 458 | 3118850,2398,3,1,1,yes,no,no,no,no,0,yes,semi-furnished 459 | 3115000,3000,3,1,1,no,no,no,no,yes,0,no,unfurnished 460 | 3115000,3850,3,1,2,yes,no,no,no,no,0,no,unfurnished 461 | 3115000,3500,2,1,1,yes,no,no,no,no,0,no,unfurnished 462 | 3087000,8100,2,1,1,yes,no,no,no,no,1,no,unfurnished 463 | 3080000,4960,2,1,1,yes,no,yes,no,yes,0,no,unfurnished 464 | 3080000,2160,3,1,2,no,no,yes,no,no,0,no,semi-furnished 465 | 3080000,3090,2,1,1,yes,yes,yes,no,no,0,no,unfurnished 466 | 3080000,4500,2,1,2,yes,no,no,yes,no,1,no,semi-furnished 467 | 3045000,3800,2,1,1,yes,no,no,no,no,0,no,unfurnished 468 | 3010000,3090,3,1,2,no,no,no,no,no,0,no,semi-furnished 469 | 3010000,3240,3,1,2,yes,no,no,no,no,2,no,semi-furnished 470 | 3010000,2835,2,1,1,yes,no,no,no,no,0,no,semi-furnished 471 | 3010000,4600,2,1,1,yes,no,no,no,no,0,no,furnished 472 | 3010000,5076,3,1,1,no,no,no,no,no,0,no,unfurnished 473 | 3010000,3750,3,1,2,yes,no,no,no,no,0,no,unfurnished 474 | 3010000,3630,4,1,2,yes,no,no,no,no,3,no,semi-furnished 475 | 3003000,8050,2,1,1,yes,no,no,no,no,0,no,unfurnished 476 | 2975000,4352,4,1,2,no,no,no,no,no,1,no,unfurnished 477 | 2961000,3000,2,1,2,yes,no,no,no,no,0,no,semi-furnished 478 | 2940000,5850,3,1,2,yes,no,yes,no,no,1,no,unfurnished 479 | 2940000,4960,2,1,1,yes,no,no,no,no,0,no,unfurnished 480 | 2940000,3600,3,1,2,no,no,no,no,no,1,no,unfurnished 481 | 2940000,3660,4,1,2,no,no,no,no,no,0,no,unfurnished 482 | 2940000,3480,3,1,2,no,no,no,no,no,1,no,semi-furnished 483 | 2940000,2700,2,1,1,no,no,no,no,no,0,no,furnished 484 | 2940000,3150,3,1,2,no,no,no,no,no,0,no,unfurnished 485 | 2940000,6615,3,1,2,yes,no,no,no,no,0,no,semi-furnished 486 | 2870000,3040,2,1,1,no,no,no,no,no,0,no,unfurnished 487 | 2870000,3630,2,1,1,yes,no,no,no,no,0,no,unfurnished 488 | 2870000,6000,2,1,1,yes,no,no,no,no,0,no,semi-furnished 489 | 2870000,5400,4,1,2,yes,no,no,no,no,0,no,unfurnished 490 | 2852500,5200,4,1,3,yes,no,no,no,no,0,no,unfurnished 491 | 2835000,3300,3,1,2,no,no,no,no,no,1,no,semi-furnished 492 | 2835000,4350,3,1,2,no,no,no,yes,no,1,no,unfurnished 493 | 2835000,2640,2,1,1,no,no,no,no,no,1,no,furnished 494 | 2800000,2650,3,1,2,yes,no,yes,no,no,1,no,unfurnished 495 | 2800000,3960,3,1,1,yes,no,no,no,no,0,no,furnished 496 | 2730000,6800,2,1,1,yes,no,no,no,no,0,no,unfurnished 497 | 2730000,4000,3,1,2,yes,no,no,no,no,1,no,unfurnished 498 | 2695000,4000,2,1,1,yes,no,no,no,no,0,no,unfurnished 499 | 2660000,3934,2,1,1,yes,no,no,no,no,0,no,unfurnished 500 | 2660000,2000,2,1,2,yes,no,no,no,no,0,no,semi-furnished 501 | 2660000,3630,3,3,2,no,yes,no,no,no,0,no,unfurnished 502 | 2660000,2800,3,1,1,yes,no,no,no,no,0,no,unfurnished 503 | 2660000,2430,3,1,1,no,no,no,no,no,0,no,unfurnished 504 | 2660000,3480,2,1,1,yes,no,no,no,no,1,no,semi-furnished 505 | 2660000,4000,3,1,1,yes,no,no,no,no,0,no,semi-furnished 506 | 2653000,3185,2,1,1,yes,no,no,no,yes,0,no,unfurnished 507 | 2653000,4000,3,1,2,yes,no,no,no,yes,0,no,unfurnished 508 | 2604000,2910,2,1,1,no,no,no,no,no,0,no,unfurnished 509 | 2590000,3600,2,1,1,yes,no,no,no,no,0,no,unfurnished 510 | 2590000,4400,2,1,1,yes,no,no,no,no,0,no,unfurnished 511 | 2590000,3600,2,2,2,yes,no,yes,no,no,1,no,furnished 512 | 2520000,2880,3,1,1,no,no,no,no,no,0,no,unfurnished 513 | 2520000,3180,3,1,1,no,no,no,no,no,0,no,unfurnished 514 | 2520000,3000,2,1,2,yes,no,no,no,no,0,no,furnished 515 | 2485000,4400,3,1,2,yes,no,no,no,no,0,no,unfurnished 516 | 2485000,3000,3,1,2,no,no,no,no,no,0,no,semi-furnished 517 | 2450000,3210,3,1,2,yes,no,yes,no,no,0,no,unfurnished 518 | 2450000,3240,2,1,1,no,yes,no,no,no,1,no,unfurnished 519 | 2450000,3000,2,1,1,yes,no,no,no,no,1,no,unfurnished 520 | 2450000,3500,2,1,1,yes,yes,no,no,no,0,no,unfurnished 521 | 2450000,4840,2,1,2,yes,no,no,no,no,0,no,unfurnished 522 | 2450000,7700,2,1,1,yes,no,no,no,no,0,no,unfurnished 523 | 2408000,3635,2,1,1,no,no,no,no,no,0,no,unfurnished 524 | 2380000,2475,3,1,2,yes,no,no,no,no,0,no,furnished 525 | 2380000,2787,4,2,2,yes,no,no,no,no,0,no,furnished 526 | 2380000,3264,2,1,1,yes,no,no,no,no,0,no,unfurnished 527 | 2345000,3640,2,1,1,yes,no,no,no,no,0,no,unfurnished 528 | 2310000,3180,2,1,1,yes,no,no,no,no,0,no,unfurnished 529 | 2275000,1836,2,1,1,no,no,yes,no,no,0,no,semi-furnished 530 | 2275000,3970,1,1,1,no,no,no,no,no,0,no,unfurnished 531 | 2275000,3970,3,1,2,yes,no,yes,no,no,0,no,unfurnished 532 | 2240000,1950,3,1,1,no,no,no,yes,no,0,no,unfurnished 533 | 2233000,5300,3,1,1,no,no,no,no,yes,0,yes,unfurnished 534 | 2135000,3000,2,1,1,no,no,no,no,no,0,no,unfurnished 535 | 2100000,2400,3,1,2,yes,no,no,no,no,0,no,unfurnished 536 | 2100000,3000,4,1,2,yes,no,no,no,no,0,no,unfurnished 537 | 2100000,3360,2,1,1,yes,no,no,no,no,1,no,unfurnished 538 | 1960000,3420,5,1,2,no,no,no,no,no,0,no,unfurnished 539 | 1890000,1700,3,1,2,yes,no,no,no,no,0,no,unfurnished 540 | 1890000,3649,2,1,1,yes,no,no,no,no,0,no,unfurnished 541 | 1855000,2990,2,1,1,no,no,no,no,no,1,no,unfurnished 542 | 1820000,3000,2,1,1,yes,no,yes,no,no,2,no,unfurnished 543 | 1767150,2400,3,1,1,no,no,no,no,no,0,no,semi-furnished 544 | 1750000,3620,2,1,1,yes,no,no,no,no,0,no,unfurnished 545 | 1750000,2910,3,1,1,no,no,no,no,no,0,no,furnished 546 | 1750000,3850,3,1,2,yes,no,no,no,no,0,no,unfurnished 547 | -------------------------------------------------------------------------------- /2. Multiple Linear Regression/Multiple Linear Regression/Multiple_Linear_Regression/advertising.csv: -------------------------------------------------------------------------------- 1 | TV,Radio,Newspaper,Sales 2 | 230.1,37.8,69.2,22.1 3 | 44.5,39.3,45.1,10.4 4 | 17.2,45.9,69.3,9.3 5 | 151.5,41.3,58.5,18.5 6 | 180.8,10.8,58.4,12.9 7 | 8.7,48.9,75,7.2 8 | 57.5,32.8,23.5,11.8 9 | 120.2,19.6,11.6,13.2 10 | 8.6,2.1,1,4.8 11 | 199.8,2.6,21.2,10.6 12 | 66.1,5.8,24.2,8.6 13 | 214.7,24,4,17.4 14 | 23.8,35.1,65.9,9.2 15 | 97.5,7.6,7.2,9.7 16 | 204.1,32.9,46,19 17 | 195.4,47.7,52.9,22.4 18 | 67.8,36.6,114,12.5 19 | 281.4,39.6,55.8,24.4 20 | 69.2,20.5,18.3,11.3 21 | 147.3,23.9,19.1,14.6 22 | 218.4,27.7,53.4,18 23 | 237.4,5.1,23.5,12.5 24 | 13.2,15.9,49.6,5.6 25 | 228.3,16.9,26.2,15.5 26 | 62.3,12.6,18.3,9.7 27 | 262.9,3.5,19.5,12 28 | 142.9,29.3,12.6,15 29 | 240.1,16.7,22.9,15.9 30 | 248.8,27.1,22.9,18.9 31 | 70.6,16,40.8,10.5 32 | 292.9,28.3,43.2,21.4 33 | 112.9,17.4,38.6,11.9 34 | 97.2,1.5,30,9.6 35 | 265.6,20,0.3,17.4 36 | 95.7,1.4,7.4,9.5 37 | 290.7,4.1,8.5,12.8 38 | 266.9,43.8,5,25.4 39 | 74.7,49.4,45.7,14.7 40 | 43.1,26.7,35.1,10.1 41 | 228,37.7,32,21.5 42 | 202.5,22.3,31.6,16.6 43 | 177,33.4,38.7,17.1 44 | 293.6,27.7,1.8,20.7 45 | 206.9,8.4,26.4,12.9 46 | 25.1,25.7,43.3,8.5 47 | 175.1,22.5,31.5,14.9 48 | 89.7,9.9,35.7,10.6 49 | 239.9,41.5,18.5,23.2 50 | 227.2,15.8,49.9,14.8 51 | 66.9,11.7,36.8,9.7 52 | 199.8,3.1,34.6,11.4 53 | 100.4,9.6,3.6,10.7 54 | 216.4,41.7,39.6,22.6 55 | 182.6,46.2,58.7,21.2 56 | 262.7,28.8,15.9,20.2 57 | 198.9,49.4,60,23.7 58 | 7.3,28.1,41.4,5.5 59 | 136.2,19.2,16.6,13.2 60 | 210.8,49.6,37.7,23.8 61 | 210.7,29.5,9.3,18.4 62 | 53.5,2,21.4,8.1 63 | 261.3,42.7,54.7,24.2 64 | 239.3,15.5,27.3,15.7 65 | 102.7,29.6,8.4,14 66 | 131.1,42.8,28.9,18 67 | 69,9.3,0.9,9.3 68 | 31.5,24.6,2.2,9.5 69 | 139.3,14.5,10.2,13.4 70 | 237.4,27.5,11,18.9 71 | 216.8,43.9,27.2,22.3 72 | 199.1,30.6,38.7,18.3 73 | 109.8,14.3,31.7,12.4 74 | 26.8,33,19.3,8.8 75 | 129.4,5.7,31.3,11 76 | 213.4,24.6,13.1,17 77 | 16.9,43.7,89.4,8.7 78 | 27.5,1.6,20.7,6.9 79 | 120.5,28.5,14.2,14.2 80 | 5.4,29.9,9.4,5.3 81 | 116,7.7,23.1,11 82 | 76.4,26.7,22.3,11.8 83 | 239.8,4.1,36.9,12.3 84 | 75.3,20.3,32.5,11.3 85 | 68.4,44.5,35.6,13.6 86 | 213.5,43,33.8,21.7 87 | 193.2,18.4,65.7,15.2 88 | 76.3,27.5,16,12 89 | 110.7,40.6,63.2,16 90 | 88.3,25.5,73.4,12.9 91 | 109.8,47.8,51.4,16.7 92 | 134.3,4.9,9.3,11.2 93 | 28.6,1.5,33,7.3 94 | 217.7,33.5,59,19.4 95 | 250.9,36.5,72.3,22.2 96 | 107.4,14,10.9,11.5 97 | 163.3,31.6,52.9,16.9 98 | 197.6,3.5,5.9,11.7 99 | 184.9,21,22,15.5 100 | 289.7,42.3,51.2,25.4 101 | 135.2,41.7,45.9,17.2 102 | 222.4,4.3,49.8,11.7 103 | 296.4,36.3,100.9,23.8 104 | 280.2,10.1,21.4,14.8 105 | 187.9,17.2,17.9,14.7 106 | 238.2,34.3,5.3,20.7 107 | 137.9,46.4,59,19.2 108 | 25,11,29.7,7.2 109 | 90.4,0.3,23.2,8.7 110 | 13.1,0.4,25.6,5.3 111 | 255.4,26.9,5.5,19.8 112 | 225.8,8.2,56.5,13.4 113 | 241.7,38,23.2,21.8 114 | 175.7,15.4,2.4,14.1 115 | 209.6,20.6,10.7,15.9 116 | 78.2,46.8,34.5,14.6 117 | 75.1,35,52.7,12.6 118 | 139.2,14.3,25.6,12.2 119 | 76.4,0.8,14.8,9.4 120 | 125.7,36.9,79.2,15.9 121 | 19.4,16,22.3,6.6 122 | 141.3,26.8,46.2,15.5 123 | 18.8,21.7,50.4,7 124 | 224,2.4,15.6,11.6 125 | 123.1,34.6,12.4,15.2 126 | 229.5,32.3,74.2,19.7 127 | 87.2,11.8,25.9,10.6 128 | 7.8,38.9,50.6,6.6 129 | 80.2,0,9.2,8.8 130 | 220.3,49,3.2,24.7 131 | 59.6,12,43.1,9.7 132 | 0.7,39.6,8.7,1.6 133 | 265.2,2.9,43,12.7 134 | 8.4,27.2,2.1,5.7 135 | 219.8,33.5,45.1,19.6 136 | 36.9,38.6,65.6,10.8 137 | 48.3,47,8.5,11.6 138 | 25.6,39,9.3,9.5 139 | 273.7,28.9,59.7,20.8 140 | 43,25.9,20.5,9.6 141 | 184.9,43.9,1.7,20.7 142 | 73.4,17,12.9,10.9 143 | 193.7,35.4,75.6,19.2 144 | 220.5,33.2,37.9,20.1 145 | 104.6,5.7,34.4,10.4 146 | 96.2,14.8,38.9,11.4 147 | 140.3,1.9,9,10.3 148 | 240.1,7.3,8.7,13.2 149 | 243.2,49,44.3,25.4 150 | 38,40.3,11.9,10.9 151 | 44.7,25.8,20.6,10.1 152 | 280.7,13.9,37,16.1 153 | 121,8.4,48.7,11.6 154 | 197.6,23.3,14.2,16.6 155 | 171.3,39.7,37.7,19 156 | 187.8,21.1,9.5,15.6 157 | 4.1,11.6,5.7,3.2 158 | 93.9,43.5,50.5,15.3 159 | 149.8,1.3,24.3,10.1 160 | 11.7,36.9,45.2,7.3 161 | 131.7,18.4,34.6,12.9 162 | 172.5,18.1,30.7,14.4 163 | 85.7,35.8,49.3,13.3 164 | 188.4,18.1,25.6,14.9 165 | 163.5,36.8,7.4,18 166 | 117.2,14.7,5.4,11.9 167 | 234.5,3.4,84.8,11.9 168 | 17.9,37.6,21.6,8 169 | 206.8,5.2,19.4,12.2 170 | 215.4,23.6,57.6,17.1 171 | 284.3,10.6,6.4,15 172 | 50,11.6,18.4,8.4 173 | 164.5,20.9,47.4,14.5 174 | 19.6,20.1,17,7.6 175 | 168.4,7.1,12.8,11.7 176 | 222.4,3.4,13.1,11.5 177 | 276.9,48.9,41.8,27 178 | 248.4,30.2,20.3,20.2 179 | 170.2,7.8,35.2,11.7 180 | 276.7,2.3,23.7,11.8 181 | 165.6,10,17.6,12.6 182 | 156.6,2.6,8.3,10.5 183 | 218.5,5.4,27.4,12.2 184 | 56.2,5.7,29.7,8.7 185 | 287.6,43,71.8,26.2 186 | 253.8,21.3,30,17.6 187 | 205,45.1,19.6,22.6 188 | 139.5,2.1,26.6,10.3 189 | 191.1,28.7,18.2,17.3 190 | 286,13.9,3.7,15.9 191 | 18.7,12.1,23.4,6.7 192 | 39.5,41.1,5.8,10.8 193 | 75.5,10.8,6,9.9 194 | 17.2,4.1,31.6,5.9 195 | 166.8,42,3.6,19.6 196 | 149.7,35.6,6,17.3 197 | 38.2,3.7,13.8,7.6 198 | 94.2,4.9,8.1,9.7 199 | 177,9.3,6.4,12.8 200 | 283.6,42,66.2,25.5 201 | 232.1,8.6,8.7,13.4 202 | -------------------------------------------------------------------------------- /20. Investment Requirement Analysis for a Company/Real World Problem - Investment Requirement Analysis for a Company/Teclov_Investment Requirement Analysis/Teclov Project description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/20. Investment Requirement Analysis for a Company/Real World Problem - Investment Requirement Analysis for a Company/Teclov_Investment Requirement Analysis/Teclov Project description.pdf -------------------------------------------------------------------------------- /20. Investment Requirement Analysis for a Company/Real World Problem - Investment Requirement Analysis for a Company/Teclov_Investment Requirement Analysis/companies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/20. Investment Requirement Analysis for a Company/Real World Problem - Investment Requirement Analysis for a Company/Teclov_Investment Requirement Analysis/companies.txt -------------------------------------------------------------------------------- /20. Investment Requirement Analysis for a Company/Real World Problem - Investment Requirement Analysis for a Company/Teclov_Investment Requirement Analysis/mapping.csv: -------------------------------------------------------------------------------- 1 | category_list,Automotive & Sports,Blanks,Cleantech / Semiconductors,Entertainment,Health,Manufacturing,"News, Search and Messaging",Others,"Social, Finance, Analytics, Advertising" 2 | ,0,1,0,0,0,0,0,0,0 3 | 3D,0,0,0,0,0,1,0,0,0 4 | 3D Printing,0,0,0,0,0,1,0,0,0 5 | 3D Technology,0,0,0,0,0,1,0,0,0 6 | Accounting,0,0,0,0,0,0,0,0,1 7 | Active Lifestyle,0,0,0,0,1,0,0,0,0 8 | Ad Targeting,0,0,0,0,0,0,0,0,1 9 | Advanced Materials,0,0,0,0,0,1,0,0,0 10 | Adventure Travel,1,0,0,0,0,0,0,0,0 11 | Advertising,0,0,0,0,0,0,0,0,1 12 | Advertising Exchanges,0,0,0,0,0,0,0,0,1 13 | Advertising Networks,0,0,0,0,0,0,0,0,1 14 | Advertising Platforms,0,0,0,0,0,0,0,0,1 15 | Advice,0,0,0,0,0,0,0,1,0 16 | Aerospace,1,0,0,0,0,0,0,0,0 17 | Agriculture,0,0,0,0,0,1,0,0,0 18 | Air Pollution Control,0,0,1,0,0,0,0,0,0 19 | Algorithms,0,0,0,0,0,0,0,1,0 20 | All Markets,0,0,0,0,0,0,0,1,0 21 | All Students,0,0,0,0,0,0,0,1,0 22 | Alter0tive Medicine,0,0,0,0,1,0,0,0,0 23 | Alumni,0,0,0,0,0,0,0,1,0 24 | A0lytics,0,0,0,0,0,0,0,0,1 25 | Android,0,0,0,0,0,0,0,0,1 26 | Angels,0,0,0,0,0,0,0,1,0 27 | Animal Feed,0,0,0,0,1,0,0,0,0 28 | Anything Capital Intensive,0,0,0,0,0,0,0,0,1 29 | App Discovery,0,0,0,0,0,0,1,0,0 30 | App Marketing,0,0,0,0,0,0,1,0,0 31 | App Stores,0,0,0,0,0,0,1,0,0 32 | Application Performance Monitoring,0,0,0,0,0,0,1,0,0 33 | Application Platforms,0,0,0,0,0,0,1,0,0 34 | Apps,0,0,0,0,0,0,1,0,0 35 | Aquaculture,0,0,1,0,0,0,0,0,0 36 | Architecture,0,0,0,0,0,1,0,0,0 37 | Archiving,0,0,0,0,0,0,1,0,0 38 | Art,0,0,0,1,0,0,0,0,0 39 | Artificial Intelligence,0,0,0,0,0,0,0,0,1 40 | Artists Globally,0,0,0,1,0,0,0,0,0 41 | Assisitive Technology,0,0,0,0,1,0,0,0,0 42 | Assisted Living,0,0,0,0,1,0,0,0,0 43 | Auctions,0,0,0,0,0,0,0,0,1 44 | Audio,0,0,0,1,0,0,0,0,0 45 | Audiobooks,0,0,0,1,0,0,0,0,0 46 | Augmented Reality,0,0,0,0,0,0,0,0,1 47 | Auto,1,0,0,0,0,0,0,0,0 48 | Automated Kiosk,1,0,0,0,0,0,0,0,0 49 | Automotive,1,0,0,0,0,0,0,0,0 50 | B2B,0,0,0,0,0,0,0,0,1 51 | B2B Express Delivery,0,0,0,0,0,0,0,0,1 52 | Babies,0,0,0,0,1,0,0,0,0 53 | Baby Accessories,0,0,0,0,1,0,0,0,0 54 | Baby Boomers,0,0,0,0,1,0,0,0,0 55 | Baby Safety,0,0,0,0,1,0,0,0,0 56 | Banking,0,0,0,0,0,0,0,0,1 57 | Batteries,0,0,0,0,0,1,0,0,0 58 | Beauty,0,0,0,0,1,0,0,0,0 59 | Bicycles,1,0,0,0,0,0,0,0,0 60 | Big Data,0,0,0,0,0,0,0,0,1 61 | Big Data A0lytics,0,0,0,0,0,0,0,0,1 62 | Billing,0,0,0,0,0,0,0,0,1 63 | Bio-Pharm,0,0,1,0,0,0,0,0,0 64 | Biofuels,0,0,1,0,0,0,0,0,0 65 | Bioinformatics,0,0,1,0,0,0,0,0,0 66 | Biomass Power Generation,0,0,1,0,0,0,0,0,0 67 | Biometrics,0,0,1,0,0,0,0,0,0 68 | Biotechnology,0,0,1,0,0,0,0,0,0 69 | Bitcoin,0,0,1,0,0,0,0,0,0 70 | Blogging Platforms,0,0,0,0,0,0,1,0,0 71 | Boating Industry,1,0,0,0,0,0,0,0,0 72 | BPO Services,0,0,0,0,0,0,0,0,1 73 | Brand Marketing,0,0,0,0,0,0,0,0,1 74 | Brewing,0,0,0,1,0,0,0,0,0 75 | Bridging Online and Offline,0,0,0,0,0,0,0,0,1 76 | Broadcasting,0,0,0,0,0,0,1,0,0 77 | Brokers,0,0,0,0,0,0,1,0,0 78 | Browser Extensions,0,0,0,0,0,0,1,0,0 79 | Building Owners,0,0,0,0,0,0,1,0,0 80 | Building Products,0,0,0,0,0,1,0,0,0 81 | Business A0lytics,0,0,0,0,0,0,0,0,1 82 | Business Development,0,0,0,0,0,0,0,0,1 83 | Business Information Systems,0,0,0,0,0,0,0,0,1 84 | Business Intelligence,0,0,0,0,0,0,0,0,1 85 | Business Productivity,0,0,0,0,0,0,0,0,1 86 | Business Services,0,0,0,0,0,0,0,0,1 87 | Business Travelers,0,0,0,1,0,0,0,0,0 88 | Cable,0,0,0,0,0,0,1,0,0 89 | CAD,1,0,0,0,0,0,0,0,0 90 | Call Center Automation,0,0,0,0,0,0,1,0,0 91 | Can0bis,0,0,0,0,1,0,0,0,0 92 | Carbon,0,0,1,0,0,0,0,0,0 93 | Career Ma0gement,0,0,0,0,0,0,0,0,1 94 | Career Planning,0,0,0,0,0,0,0,0,1 95 | Cars,1,0,0,0,0,0,0,0,0 96 | Casual Games,0,0,0,1,0,0,0,0,0 97 | Celebrity,0,0,0,1,0,0,0,0,0 98 | Certification Test,0,0,0,0,0,0,1,0,0 99 | Charities,0,0,0,0,0,0,0,0,1 100 | Charity,0,0,0,0,0,0,0,0,1 101 | Charter Schools,0,0,0,0,0,0,0,0,1 102 | Chat,0,0,0,0,0,0,1,0,0 103 | Chemicals,0,0,1,0,0,0,0,0,0 104 | Child Care,0,0,0,0,1,0,0,0,0 105 | Chi0 Internet,0,0,0,0,0,0,1,0,0 106 | Civil Engineers,0,0,0,0,0,1,0,0,0 107 | Classifieds,0,0,0,0,0,0,1,0,0 108 | Clean Energy,0,0,1,0,0,0,0,0,0 109 | Clean Technology,0,0,1,0,0,0,0,0,0 110 | Clean Technology IT,0,0,1,0,0,0,0,0,0 111 | Clinical Trials,0,0,0,0,1,0,0,0,0 112 | Cloud-Based Music,0,0,0,0,0,0,1,0,0 113 | Cloud Computing,0,0,0,0,0,0,1,0,0 114 | Cloud Data Services,0,0,0,0,0,0,1,0,0 115 | Cloud Infrastructure,0,0,0,0,0,0,1,0,0 116 | Cloud Ma0gement,0,0,0,0,0,0,1,0,0 117 | Cloud Security,0,0,0,0,0,0,1,0,0 118 | Coffee,0,0,0,1,0,0,0,0,0 119 | Collaboration,0,0,0,0,0,0,0,0,1 120 | Collaborative Consumption,0,0,0,0,0,0,0,0,1 121 | Collectibles,0,0,0,0,0,0,0,1,0 122 | College Campuses,0,0,0,0,0,0,0,1,0 123 | College Recruiting,0,0,0,0,0,0,0,0,1 124 | Colleges,0,0,0,0,0,0,0,0,1 125 | Comics,0,0,0,1,0,0,0,0,0 126 | Commercial Real Estate,0,0,0,0,0,0,1,0,0 127 | Commercial Solar,0,0,1,0,0,0,0,0,0 128 | Commodities,0,0,1,0,0,0,0,0,0 129 | Communications Hardware,0,0,0,0,0,1,0,0,0 130 | Communications Infrastructure,0,0,0,0,0,1,0,0,0 131 | Communities,0,0,0,0,0,0,0,0,1 132 | Comparison Shopping,0,0,0,0,0,0,1,0,0 133 | Computer Vision,0,0,0,0,0,1,0,0,0 134 | Computers,0,0,0,0,0,1,0,0,0 135 | Concentrated Solar Power,0,0,1,0,0,0,0,0,0 136 | Concerts,0,0,0,1,0,0,0,0,0 137 | Console Gaming,0,0,0,1,0,0,0,0,0 138 | Construction,0,0,0,0,0,1,0,0,0 139 | Consulting,0,0,0,0,0,0,0,0,1 140 | Consumer Behavior,0,0,0,0,0,0,0,0,1 141 | Consumer Electronics,0,0,0,0,0,1,0,0,0 142 | Consumer Goods,0,0,0,0,0,1,0,0,0 143 | Consumer Internet,0,0,0,0,0,0,0,0,1 144 | Consumer Lending,0,0,0,0,0,0,0,0,1 145 | Consumers,0,0,0,0,0,0,0,0,1 146 | Contact Centers,0,0,0,0,0,0,0,0,1 147 | Contact Ma0gement,0,0,0,0,0,0,0,0,1 148 | Content,0,0,0,1,0,0,0,0,0 149 | Content Creators,0,0,0,1,0,0,0,0,0 150 | Content Delivery,0,0,0,1,0,0,0,0,0 151 | Content Discovery,0,0,0,1,0,0,0,0,0 152 | Content Syndication,0,0,0,1,0,0,0,0,0 153 | Contests,0,0,0,1,0,0,0,0,0 154 | Cooking,0,0,0,0,1,0,0,0,0 155 | Corporate IT,0,0,0,0,0,0,0,0,1 156 | Corporate Training,0,0,0,0,0,0,0,0,1 157 | Corporate Wellness,0,0,0,0,1,0,0,0,0 158 | Cosmetic Surgery,0,0,0,0,1,0,0,0,0 159 | Cosmetics,0,0,0,0,1,0,0,0,0 160 | Coupons,0,0,0,0,0,0,0,0,1 161 | Coworking,0,0,0,0,0,0,0,0,1 162 | Craft Beer,0,0,0,1,0,0,0,0,0 163 | Creative,0,0,0,1,0,0,0,0,0 164 | Creative Industries,0,0,0,1,0,0,0,0,0 165 | Credit,0,0,0,0,0,0,0,0,1 166 | Credit Cards,0,0,0,0,0,0,0,0,1 167 | CRM,0,0,0,0,0,0,0,0,1 168 | Crowdfunding,0,0,0,0,0,0,0,0,1 169 | Crowdsourcing,0,0,0,0,0,0,0,0,1 170 | Curated Web,0,0,0,0,0,0,1,0,0 171 | Custom Retail,0,0,0,0,0,0,0,0,1 172 | Customer Service,0,0,0,0,0,0,0,0,1 173 | Customer Support Tools,0,0,0,0,0,0,0,0,1 174 | Cyber,0,0,0,0,0,0,0,0,1 175 | Cyber Security,0,0,0,0,0,0,0,0,1 176 | Data Center Automation,0,0,0,0,0,0,0,0,1 177 | Data Center Infrastructure,0,0,0,0,0,0,0,0,1 178 | Data Centers,0,0,0,0,0,0,0,0,1 179 | Data Integration,0,0,0,0,0,0,0,0,1 180 | Data Mining,0,0,0,0,0,0,0,0,1 181 | Data Privacy,0,0,0,0,0,0,0,0,1 182 | Data Security,0,0,0,0,0,0,0,0,1 183 | Data Visualization,0,0,0,0,0,0,0,0,1 184 | Databases,0,0,0,0,0,0,0,0,1 185 | Debt Collecting,0,0,0,0,0,0,0,0,1 186 | Defense,0,0,0,0,0,1,0,0,0 187 | Delivery,0,0,0,0,0,0,1,0,0 188 | Demographies,0,0,0,0,0,0,1,0,0 189 | Dental,0,0,0,0,1,0,0,0,0 190 | Design,1,0,0,0,0,0,0,0,0 191 | Designers,1,0,0,0,0,0,0,0,0 192 | Developer APIs,0,0,0,0,0,0,0,0,1 193 | Developer Tools,0,0,0,0,0,0,0,0,1 194 | Development Platforms,0,0,0,0,0,0,0,0,1 195 | Diabetes,0,0,0,0,1,0,0,0,0 196 | Diagnostics,0,0,0,0,1,0,0,0,0 197 | Dietary Supplements,0,0,0,0,1,0,0,0,0 198 | Digital Entertainment,0,0,0,1,0,0,0,0,0 199 | Digital Media,0,0,0,1,0,0,0,0,0 200 | Digital Rights Ma0gement,0,0,0,1,0,0,0,0,0 201 | Digital Sig0ge,0,0,0,1,0,0,0,0,0 202 | Direct Advertising,0,0,0,0,0,0,0,0,1 203 | Direct Marketing,0,0,0,0,0,0,1,0,0 204 | Direct Sales,0,0,0,0,0,0,1,0,0 205 | Discounts,0,0,0,0,0,0,0,0,1 206 | Displays,0,0,0,0,0,1,0,0,0 207 | Disruptive Models,0,0,1,0,0,0,0,0,0 208 | Distribution,0,0,0,0,0,0,0,1,0 209 | Distributors,0,0,0,0,0,0,0,1,0 210 | DIY,0,0,0,0,0,0,0,1,0 211 | Doctors,0,0,0,0,1,0,0,0,0 212 | Document Ma0gement,0,0,0,0,0,0,0,1,0 213 | DOD/Military,0,0,0,0,0,1,0,0,0 214 | Domains,0,0,0,0,0,0,1,0,0 215 | Drones,1,0,0,0,0,0,0,0,0 216 | E-Books,0,0,0,1,0,0,0,0,0 217 | E-Commerce,0,0,0,0,0,0,0,1,0 218 | E-Commerce Platforms,0,0,0,0,0,0,0,1,0 219 | Early-Stage Technology,0,0,1,0,0,0,0,0,0 220 | EBooks,0,0,0,1,0,0,0,0,0 221 | EDA Tools,0,0,0,0,0,0,0,1,0 222 | Ediscovery,0,0,0,0,0,0,0,1,0 223 | EdTech,0,0,0,0,0,0,0,1,0 224 | Education,0,0,0,0,0,0,0,1,0 225 | Educatio0l Games,0,0,0,1,0,0,0,0,0 226 | Edutainment,0,0,0,1,0,0,0,0,0 227 | Elder Care,0,0,0,0,1,0,0,0,0 228 | Electric Vehicles,1,0,0,0,0,0,0,0,0 229 | Electrical Distribution,0,0,0,0,0,1,0,0,0 230 | Electronic Health Records,0,0,0,0,1,0,0,0,0 231 | Electronics,0,0,0,0,0,1,0,0,0 232 | Email,0,0,0,0,0,0,1,0,0 233 | Email Marketing,0,0,0,0,0,0,0,0,1 234 | Email Newsletters,0,0,0,0,0,0,0,0,1 235 | Embedded Hardware and Software,0,0,0,0,0,1,0,0,0 236 | Emerging Markets,0,0,0,0,0,0,0,1,0 237 | Employer Benefits Programs,0,0,0,0,0,0,0,0,1 238 | Employment,0,0,0,0,0,0,0,1,0 239 | Energy,0,0,1,0,0,0,0,0,0 240 | Energy Efficiency,0,0,1,0,0,0,0,0,0 241 | Energy IT,0,0,1,0,0,0,0,0,0 242 | Energy Ma0gement,0,0,1,0,0,0,0,0,0 243 | Energy Storage,0,0,1,0,0,0,0,0,0 244 | Engineering Firms,0,0,0,0,0,0,0,1,0 245 | Enterprise 2.0,0,0,0,0,0,0,0,1,0 246 | Enterprise Application,0,0,0,0,0,0,0,1,0 247 | Enterprise Purchasing,0,0,0,0,0,0,0,0,1 248 | Enterprise Resource Planning,0,0,0,0,0,0,0,1,0 249 | Enterprise Search,0,0,0,0,0,0,1,0,0 250 | Enterprise Security,0,0,0,0,0,0,0,1,0 251 | Enterprise Software,0,0,0,0,0,0,0,1,0 252 | Enterprises,0,0,0,0,0,0,0,1,0 253 | Entertainment,0,0,0,1,0,0,0,0,0 254 | Entertainment Industry,0,0,0,1,0,0,0,0,0 255 | Entrepreneur,0,0,0,0,0,0,0,1,0 256 | Environmental Innovation,0,0,1,0,0,0,0,0,0 257 | Estimation and Quoting,0,0,0,0,0,0,0,0,1 258 | Event Ma0gement,0,0,0,1,0,0,0,0,0 259 | Events,0,0,0,1,0,0,0,0,0 260 | Exercise,0,0,0,0,1,0,0,0,0 261 | Eyewear,0,0,0,0,1,0,0,0,0 262 | Face Recognition,0,0,0,0,0,0,0,0,1 263 | Facebook Applications,0,0,0,0,0,0,0,0,1 264 | Families,0,0,0,0,0,0,0,1,0 265 | Fantasy Sports,0,0,0,1,0,0,0,0,0 266 | Farmers Market,0,0,0,0,0,1,0,0,0 267 | Farming,0,0,0,0,0,1,0,0,0 268 | Fashion,0,0,0,1,0,0,0,0,0 269 | Fertility,0,0,1,0,0,0,0,0,0 270 | Field Support Services,0,0,0,0,0,0,0,1,0 271 | File Sharing,0,0,0,0,0,0,0,1,0 272 | Film,0,0,0,1,0,0,0,0,0 273 | Film Distribution,0,0,0,1,0,0,0,0,0 274 | Film Production,0,0,0,1,0,0,0,0,0 275 | Fi0nce,0,0,0,0,0,0,0,0,1 276 | Fi0nce Technology,0,0,0,0,0,0,0,0,1 277 | Fi0ncial Exchanges,0,0,0,0,0,0,0,0,1 278 | Fi0ncial Services,0,0,0,0,0,0,0,0,1 279 | FinTech,0,0,0,0,0,0,0,0,1 280 | Fitness,0,0,0,0,1,0,0,0,0 281 | Flash Sales,0,0,0,0,0,0,0,1,0 282 | Flash Storage,0,0,0,0,0,0,0,1,0 283 | Fleet Ma0gement,0,0,0,0,0,0,0,1,0 284 | Flowers,0,0,0,0,0,0,0,1,0 285 | Fmcg,0,0,0,0,0,1,0,0,0 286 | Food Processing,0,0,0,0,0,1,0,0,0 287 | Forums,0,0,0,0,0,0,1,0,0 288 | Fraud Detection,0,0,0,0,0,0,0,0,1 289 | Freelancers,0,0,0,0,0,0,0,1,0 290 | Freemium,0,0,0,0,0,0,0,0,1 291 | FreetoPlay Gaming,0,0,0,1,0,0,0,0,0 292 | Fruit,0,0,0,0,0,0,0,1,0 293 | Fuel Cells,0,0,1,0,0,0,0,0,0 294 | Fuels,1,0,0,0,0,0,0,0,0 295 | Funeral Industry,0,0,1,0,0,0,0,0,0 296 | Furniture,0,0,0,0,0,1,0,0,0 297 | Gadget,0,0,0,0,0,1,0,0,0 298 | Gambling,0,0,0,1,0,0,0,0,0 299 | Game,0,0,0,1,0,0,0,0,0 300 | Game Mechanics,0,0,0,1,0,0,0,0,0 301 | Games,0,0,0,1,0,0,0,0,0 302 | Gamification,0,0,0,1,0,0,0,0,0 303 | Gas,0,0,1,0,0,0,0,0,0 304 | Gay & Lesbian,0,0,0,0,0,0,0,1,0 305 | General Public Worldwide,0,0,0,0,0,0,0,1,0 306 | Genetic Testing,0,0,0,0,1,0,0,0,0 307 | Geospatial,0,0,0,0,0,0,0,1,0 308 | Gift Card,0,0,0,0,0,0,0,1,0 309 | Gift Exchange,0,0,0,0,0,0,0,1,0 310 | Gift Registries,0,0,0,0,0,0,0,1,0 311 | Gold,0,0,0,0,0,0,0,0,1 312 | Gover0nce,0,0,0,0,0,0,0,1,0 313 | Government Innovation,0,0,0,0,0,0,0,1,0 314 | Governments,0,0,0,0,0,0,0,1,0 315 | Gps,0,0,0,0,0,0,1,0,0 316 | Graphics,0,0,0,0,0,0,1,0,0 317 | Green,0,0,1,0,0,0,0,0,0 318 | Green Consumer Goods,0,0,1,0,0,0,0,0,0 319 | Groceries,0,0,0,0,0,1,0,0,0 320 | Group Buying,0,0,0,0,0,0,0,0,1 321 | Group SMS,0,0,0,0,0,0,1,0,0 322 | Guides,0,0,0,0,0,0,0,1,0 323 | Handmade,0,0,0,0,0,1,0,0,0 324 | Hardware,0,0,0,0,0,1,0,0,0 325 | Hardware + Software,0,0,0,0,0,1,0,0,0 326 | Health and Insurance,0,0,0,0,1,0,0,0,0 327 | Health and Wellness,0,0,0,0,1,0,0,0,0 328 | Health Care,0,0,0,0,1,0,0,0,0 329 | Health Care Information Technology,0,0,0,0,1,0,0,0,0 330 | Health Diagnostics,0,0,0,0,1,0,0,0,0 331 | Health Services Industry,0,0,0,0,1,0,0,0,0 332 | Healthcare Services,0,0,0,0,1,0,0,0,0 333 | Heavy Industry,1,0,0,0,0,0,0,0,0 334 | Hedge Funds,0,0,0,0,0,0,0,0,1 335 | High School Students,0,0,0,0,0,0,0,1,0 336 | High Schools,0,0,0,0,0,0,0,1,0 337 | High Tech,0,0,0,0,0,0,0,1,0 338 | Home & Garden,0,0,1,0,0,0,0,0,0 339 | Home Automation,0,0,1,0,0,0,0,0,0 340 | Home Decor,0,0,1,0,0,0,0,0,0 341 | Home Owners,0,0,0,0,0,0,0,1,0 342 | Home Renovation,0,0,0,0,0,0,0,1,0 343 | Homeland Security,0,0,0,0,0,0,0,1,0 344 | Homeless Shelter,0,0,0,0,0,0,0,1,0 345 | Hospitality,0,0,0,0,0,0,0,1,0 346 | Hospitals,0,0,0,0,1,0,0,0,0 347 | Hotels,0,0,0,1,0,0,0,0,0 348 | Human Computer Interaction,0,0,0,0,0,0,0,1,0 349 | Human Resource Automation,0,0,0,0,0,0,0,1,0 350 | Human Resources,0,0,0,0,0,0,0,1,0 351 | Humanitarian,0,0,0,0,0,0,0,1,0 352 | IaaS,0,0,0,0,0,0,0,1,0 353 | ICT,0,0,0,0,0,0,0,1,0 354 | Identity,0,0,0,0,0,0,0,1,0 355 | Identity Ma0gement,0,0,0,0,0,0,0,0,1 356 | Image Recognition,0,0,0,0,0,0,0,0,1 357 | Impact Investing,0,0,0,0,0,0,0,0,1 358 | In-Flight Entertainment,0,0,0,1,0,0,0,0,0 359 | Incentives,0,0,0,0,0,0,0,0,1 360 | Incubators,0,0,0,0,0,0,0,0,1 361 | Independent Music Labels,0,0,0,1,0,0,0,0,0 362 | Independent Pharmacies,0,0,0,0,1,0,0,0,0 363 | Indians,0,0,0,0,0,0,0,1,0 364 | Indoor Positioning,0,0,0,0,0,0,0,1,0 365 | Industrial,0,0,0,0,0,1,0,0,0 366 | Industrial Automation,1,0,0,0,0,0,0,0,0 367 | Information Security,0,0,0,0,0,0,0,0,1 368 | Information Services,0,0,0,0,0,0,0,0,1 369 | Information Technology,0,0,0,0,0,0,0,0,1 370 | Infrastructure,0,0,0,0,0,0,0,0,1 371 | Innovation Engineering,0,0,0,0,0,0,0,0,1 372 | Innovation Ma0gement,0,0,0,0,0,0,0,0,1 373 | Insurance,0,0,0,0,0,0,0,0,1 374 | Intellectual Asset Ma0gement,0,0,0,0,0,0,0,1,0 375 | Intellectual Property,0,0,0,0,0,0,0,1,0 376 | Intelligent Systems,0,0,0,0,0,0,0,1,0 377 | Interest Graph,0,0,0,0,0,0,0,1,0 378 | Interface Design,0,0,0,1,0,0,0,0,0 379 | Interior Design,0,0,0,1,0,0,0,0,0 380 | Internet,0,0,0,0,0,0,1,0,0 381 | Internet Infrastructure,0,0,0,0,0,0,1,0,0 382 | Internet Marketing,0,0,0,0,0,0,0,0,1 383 | Internet of Things,0,0,0,0,0,0,0,0,1 384 | Internet Radio Market,0,0,0,0,0,0,1,0,0 385 | Internet Service Providers,0,0,0,0,0,0,1,0,0 386 | Investment Ma0gement,0,0,0,0,0,0,0,0,1 387 | iOS,0,0,0,0,0,0,0,1,0 388 | iPad,0,0,0,0,0,0,0,1,0 389 | iPhone,0,0,0,0,0,0,0,1,0 390 | IT and Cybersecurity,0,0,0,0,0,0,0,1,0 391 | IT Ma0gement,0,0,0,0,0,0,0,1,0 392 | Jewelry,0,0,0,1,0,0,0,0,0 393 | Jour0lism,0,0,0,0,0,0,1,0,0 394 | K-12 Education,0,0,0,0,0,0,0,1,0 395 | Kids,0,0,0,0,0,0,0,1,0 396 | Knowledge Ma0gement,0,0,0,0,0,0,0,1,0 397 | Landscaping,0,0,0,0,0,0,0,1,0 398 | Language Learning,0,0,0,0,0,0,0,1,0 399 | Lasers,0,0,0,0,1,0,0,0,0 400 | Law Enforcement,0,0,0,0,0,0,0,1,0 401 | Lead Generation,0,0,0,0,0,0,0,1,0 402 | Lead Ma0gement,0,0,0,0,0,0,0,1,0 403 | Legal,0,0,0,0,0,0,0,1,0 404 | Leisure,0,0,0,1,0,0,0,0,0 405 | Licensing,0,0,0,0,0,0,0,1,0 406 | Life Sciences,0,0,0,0,0,0,0,1,0 407 | Lifestyle,0,0,0,1,0,0,0,0,0 408 | Lifestyle Businesses,0,0,0,1,0,0,0,0,0 409 | Lifestyle Products,0,0,0,1,0,0,0,0,0 410 | Lighting,0,0,1,0,0,0,0,0,0 411 | Limousines,1,0,0,0,0,0,0,0,0 412 | Linux,0,0,0,0,0,0,0,1,0 413 | Local,0,0,0,0,0,0,0,1,0 414 | Local Advertising,0,0,0,0,0,0,0,0,1 415 | Local Based Services,0,0,0,0,0,0,0,1,0 416 | Local Businesses,0,0,0,0,0,0,0,1,0 417 | Local Commerce,0,0,0,0,0,0,0,1,0 418 | Local Search,0,0,0,0,0,0,1,0,0 419 | Location Based Services,0,0,0,0,0,0,0,1,0 420 | Logistics,0,0,0,0,0,0,0,1,0 421 | Logistics Company,0,0,0,0,0,0,0,1,0 422 | Lotteries,0,0,0,0,0,0,0,0,1 423 | Low Bid Auctions,0,0,0,0,0,0,0,1,0 424 | Loyalty Programs,0,0,0,0,0,0,0,1,0 425 | M2M,0,0,0,0,0,0,0,1,0 426 | Machine Learning,0,0,0,0,0,0,0,0,1 427 | Manufacturing,0,0,0,0,0,1,0,0,0 428 | Maps,0,0,0,0,0,0,1,0,0 429 | Market Research,0,0,0,0,0,0,0,0,1 430 | Marketing Automation,0,0,0,0,0,0,0,0,1 431 | Marketplaces,0,0,0,0,0,0,0,1,0 432 | Mass Customization,0,0,0,0,0,0,0,1,0 433 | Match-Making,0,0,0,0,0,0,0,1,0 434 | Material Science,0,0,1,0,0,0,0,0,0 435 | Mechanical Solutions,0,0,1,0,0,0,0,0,0 436 | Media,0,0,0,1,0,0,0,0,0 437 | Medical,0,0,0,0,1,0,0,0,0 438 | Medical Devices,0,0,0,0,1,0,0,0,0 439 | Medical Professio0ls,0,0,0,0,1,0,0,0,0 440 | Meeting Software,0,0,0,0,0,0,1,0,0 441 | Mens Specific,0,0,0,0,1,0,0,0,0 442 | Messaging,0,0,0,0,0,0,1,0,0 443 | mHealth,0,0,0,0,1,0,0,0,0 444 | Micro-Enterprises,0,0,0,0,0,0,0,1,0 445 | MicroBlogging,0,0,0,0,0,0,1,0,0 446 | Minerals,0,0,1,0,0,0,0,0,0 447 | Mining Technologies,0,0,1,0,0,0,0,0,0 448 | Mobile,0,0,0,0,0,0,1,0,0 449 | Mobile Advertising,0,0,0,0,0,0,0,0,1 450 | Mobile A0lytics,0,0,0,0,0,0,0,0,1 451 | Mobile Commerce,0,0,0,0,0,0,0,0,1 452 | Mobile Devices,0,0,0,0,0,0,1,0,0 453 | Mobile Enterprise,0,0,0,0,0,0,1,0,0 454 | Mobile Games,0,0,0,1,0,0,0,0,0 455 | Mobile Health,0,0,0,0,1,0,0,0,0 456 | Mobile Infrastructure,0,0,0,0,0,1,0,0,0 457 | Mobile Payments,0,0,0,0,0,0,0,0,1 458 | Mobile Security,0,0,0,0,0,0,0,1,0 459 | Mobile Shopping,0,0,0,0,0,0,0,0,1 460 | Mobile Social,0,0,0,0,0,0,1,0,0 461 | Mobile Software Tools,0,0,0,0,0,1,0,0,0 462 | Mobile Video,0,0,0,1,0,0,0,0,0 463 | Mobility,0,0,0,0,0,0,0,1,0 464 | Monetization,0,0,0,0,0,0,0,0,1 465 | Moneymaking,0,0,0,0,0,0,0,0,1 466 | Multi-level Marketing,0,0,0,0,0,0,0,0,1 467 | Music,0,0,0,1,0,0,0,0,0 468 | Music Education,0,0,0,1,0,0,0,0,0 469 | Music Services,0,0,0,1,0,0,0,0,0 470 | Music Venues,0,0,0,1,0,0,0,0,0 471 | Musical Instruments,0,0,0,1,0,0,0,0,0 472 | Musicians,0,0,0,1,0,0,0,0,0 473 | 0notechnology,0,0,1,0,0,0,0,0,0 474 | 0tural Language Processing,0,0,1,0,0,0,0,0,0 475 | 0tural Resources,0,0,1,0,0,0,0,0,0 476 | 0vigation,0,0,0,0,0,0,1,0,0 477 | Network Security,0,0,0,0,0,0,0,1,0 478 | Networking,0,0,0,0,0,0,0,1,0 479 | Neuroscience,0,0,0,0,1,0,0,0,0 480 | New Product Development,0,0,0,0,0,1,0,0,0 481 | New Technologies,0,0,0,0,0,1,0,0,0 482 | News,0,0,0,0,0,0,1,0,0 483 | Non-Tech,0,0,0,0,0,0,0,1,0 484 | Non Profit,0,0,0,0,0,0,0,1,0 485 | Nonprofits,0,0,0,0,0,0,0,1,0 486 | Nutrition,0,0,0,0,1,0,0,0,0 487 | Office Space,0,0,0,0,0,0,0,1,0 488 | Oil,0,0,0,0,0,0,0,1,0 489 | Oil & Gas,0,0,0,0,0,0,0,1,0 490 | Oil and Gas,0,0,0,0,0,0,0,1,0 491 | Online Dating,0,0,0,0,0,0,1,0,0 492 | Online Education,0,0,0,0,0,0,0,1,0 493 | Online Gaming,0,0,0,1,0,0,0,0,0 494 | Online Identity,0,0,0,0,0,0,0,1,0 495 | Online Rental,0,0,0,0,0,0,1,0,0 496 | Online Reservations,0,0,0,0,0,0,1,0,0 497 | Online Scheduling,0,0,0,0,0,0,1,0,0 498 | Online Shopping,0,0,0,0,0,0,1,0,0 499 | Online Travel,0,0,0,0,0,0,1,0,0 500 | Online Video Advertising,0,0,0,1,0,0,0,0,0 501 | Open Source,0,0,0,0,0,0,0,1,0 502 | Opinions,0,0,0,0,0,0,0,1,0 503 | Optical Communications,0,0,0,0,0,1,0,0,0 504 | Optimization,0,0,0,0,0,0,0,1,0 505 | Organic,0,0,0,0,1,0,0,0,0 506 | Organic Food,0,0,0,0,1,0,0,0,0 507 | Outdoors,0,0,0,0,1,0,0,0,0 508 | Outsourcing,0,0,0,0,0,0,0,1,0 509 | P2P Money Transfer,0,0,0,0,0,0,0,0,1 510 | PaaS,0,0,0,0,0,0,0,0,1 511 | Parenting,0,0,0,0,0,0,0,1,0 512 | Parking,0,0,0,0,0,0,0,1,0 513 | Payments,0,0,0,0,0,0,0,0,1 514 | Peer-to-Peer,0,0,0,0,0,0,1,0,0 515 | Performance Marketing,0,0,0,0,0,0,0,0,1 516 | Perso0l Branding,0,0,0,0,0,0,0,0,1 517 | Perso0l Data,0,0,0,0,0,0,0,1,0 518 | Perso0l Fi0nce,0,0,0,0,0,0,0,0,1 519 | Perso0l Health,0,0,0,0,1,0,0,0,0 520 | Perso0lization,0,0,0,0,0,0,0,1,0 521 | Pervasive Computing,0,0,0,0,0,0,0,1,0 522 | Pets,0,0,0,0,1,0,0,0,0 523 | Pharmaceuticals,0,0,0,0,1,0,0,0,0 524 | Photo Editing,0,0,0,1,0,0,0,0,0 525 | Photo Sharing,0,0,0,1,0,0,0,0,0 526 | Photography,0,0,0,1,0,0,0,0,0 527 | Physical Security,0,0,0,0,0,0,0,1,0 528 | Physicians,0,0,0,0,1,0,0,0,0 529 | Plumbers,0,0,0,0,0,0,0,1,0 530 | Point of Sale,0,0,0,0,0,0,0,1,0 531 | Politics,0,0,0,0,0,0,0,1,0 532 | Polling,0,0,0,0,0,0,0,1,0 533 | Portals,0,0,0,0,0,0,0,1,0 534 | Postal and Courier Services,0,0,0,0,0,0,0,1,0 535 | Pre Seed,0,0,0,0,0,0,0,0,1 536 | Predictive A0lytics,0,0,0,0,0,0,0,0,1 537 | Presentations,0,0,0,0,0,0,0,1,0 538 | Price Comparison,0,0,0,0,0,0,0,0,1 539 | Printing,0,0,0,0,0,0,0,1,0 540 | Privacy,0,0,0,0,0,0,0,1,0 541 | Private School,0,0,0,0,0,0,0,1,0 542 | Private Social Networking,0,0,0,0,0,0,1,0,0 543 | Procurement,0,0,0,0,0,0,0,1,0 544 | Product Design,0,0,0,0,0,0,0,1,0 545 | Product Development Services,0,0,0,0,0,0,0,1,0 546 | Productivity,0,0,0,0,0,0,0,1,0 547 | Productivity Software,0,0,0,0,0,0,0,1,0 548 | Professio0l Networking,0,0,0,0,0,0,1,0,0 549 | Professio0l Services,0,0,0,0,0,0,0,1,0 550 | Project Ma0gement,0,0,0,0,0,0,0,1,0 551 | Promotio0l,0,0,0,0,0,0,0,0,1 552 | Property Ma0gement,0,0,0,0,0,0,0,0,1 553 | Public Relations,0,0,0,0,0,0,0,0,1 554 | Public Safety,0,0,0,0,1,0,0,0,0 555 | Public Transportation,0,0,0,0,1,0,0,0,0 556 | Publishing,0,0,0,0,0,0,1,0,0 557 | Q&A,0,0,0,0,0,0,1,0,0 558 | QR Codes,0,0,0,0,0,0,0,1,0 559 | Real Estate,0,0,0,0,0,0,0,1,0 560 | Real Time,0,0,0,0,0,0,0,1,0 561 | Realtors,0,0,0,0,0,0,0,1,0 562 | Recreation,0,0,0,0,0,0,0,1,0 563 | Recruiting,0,0,0,0,0,0,1,0,0 564 | Recycling,0,0,1,0,0,0,0,0,0 565 | Religion,0,0,0,0,0,0,0,1,0 566 | Renewable Energies,0,0,1,0,0,0,0,0,0 567 | Renewable Tech,0,0,1,0,0,0,0,0,0 568 | Rental Housing,0,0,0,0,0,0,0,1,0 569 | Reputation,0,0,0,0,0,0,0,1,0 570 | Resorts,0,0,0,1,0,0,0,0,0 571 | Restaurants,0,0,0,1,0,0,0,0,0 572 | Retail,0,0,0,0,0,0,0,0,1 573 | Retail Technology,0,0,0,0,0,0,0,0,1 574 | Reviews and Recommendations,0,0,0,1,0,0,0,0,0 575 | RFID,0,0,0,0,0,0,0,1,0 576 | Ride Sharing,0,0,0,0,0,0,1,0,0 577 | Risk Ma0gement,0,0,0,0,0,0,0,0,1 578 | Robotics,0,0,0,0,0,0,0,1,0 579 | SaaS,0,0,0,0,0,0,0,1,0 580 | Sales and Marketing,0,0,0,0,0,0,0,0,1 581 | Sales Automation,0,0,0,0,0,0,0,1,0 582 | Search,0,0,0,0,0,0,1,0,0 583 | Search Marketing,0,0,0,0,0,0,1,0,0 584 | Security,0,0,0,0,0,0,0,1,0 585 | Semiconductor Manufacturing Equipment,0,0,1,0,0,0,0,0,0 586 | Semiconductors,0,0,1,0,0,0,0,0,0 587 | Senior Citizens,0,0,0,0,1,0,0,0,0 588 | Senior Health,0,0,0,0,1,0,0,0,0 589 | Sensors,0,0,0,0,0,0,0,1,0 590 | SEO,0,0,0,0,0,0,1,0,0 591 | Service Industries,0,0,0,0,0,0,0,1,0 592 | Service Providers,0,0,0,0,0,0,0,1,0 593 | Services,0,0,0,0,0,0,0,1,0 594 | SexTech,0,0,0,0,1,0,0,0,0 595 | Shared Services,0,0,0,0,0,0,0,1,0 596 | Shipping,0,0,0,0,0,0,0,1,0 597 | Shoes,0,0,0,1,0,0,0,0,0 598 | Shopping,0,0,0,1,0,0,0,0,0 599 | Simulation,0,0,0,0,0,0,0,1,0 600 | Skill Assessment,0,0,0,0,0,0,0,1,0 601 | Small and Medium Businesses,0,0,0,0,0,0,0,1,0 602 | Smart Grid,0,0,0,0,0,0,0,1,0 603 | SNS,0,0,0,0,0,0,0,1,0 604 | Soccer,1,0,0,0,0,0,0,0,0 605 | Social + Mobile + Local,0,0,0,0,0,0,0,0,1 606 | Social Bookmarking,0,0,0,0,0,0,0,0,1 607 | Social Business,0,0,0,0,0,0,0,0,1 608 | Social Buying,0,0,0,0,0,0,0,0,1 609 | Social Commerce,0,0,0,0,0,0,0,0,1 610 | Social CRM,0,0,0,0,0,0,0,0,1 611 | Social Fundraising,0,0,0,0,0,0,0,0,1 612 | Social Games,0,0,0,0,0,0,0,0,1 613 | Social Media,0,0,0,0,0,0,0,0,1 614 | Social Media Ma0gement,0,0,0,0,0,0,0,0,1 615 | Social Media Marketing,0,0,0,0,0,0,0,0,1 616 | Social Media Platforms,0,0,0,0,0,0,0,0,1 617 | Social Network Media,0,0,0,0,0,0,0,0,1 618 | Social News,0,0,0,0,0,0,0,0,1 619 | Social Recruiting,0,0,0,0,0,0,0,0,1 620 | Social Television,0,0,0,0,0,0,0,0,1 621 | Social Travel,0,0,0,0,0,0,0,0,1 622 | Software,0,0,0,0,0,0,0,1,0 623 | Solar,0,0,1,0,0,0,0,0,0 624 | Space Travel,0,0,1,0,0,0,0,0,0 625 | Specialty Chemicals,0,0,0,0,1,0,0,0,0 626 | Specialty Foods,0,0,0,0,1,0,0,0,0 627 | Speech Recognition,0,0,0,0,1,0,0,0,0 628 | Sporting Goods,1,0,0,0,0,0,0,0,0 629 | Sports,1,0,0,0,0,0,0,0,0 630 | Staffing Firms,0,0,0,0,0,0,0,1,0 631 | Startups,0,0,0,0,0,0,0,1,0 632 | Stock Exchanges,0,0,0,0,0,0,0,0,1 633 | Storage,0,0,0,0,0,1,0,0,0 634 | Subscription Service,0,0,0,0,0,0,0,1,0 635 | Supply Chain Ma0gement,0,0,0,0,0,0,0,1,0 636 | Surveys,0,0,0,0,0,0,0,1,0 637 | Synchronization,0,0,0,0,0,0,0,1,0 638 | Systems,0,0,0,0,0,0,0,1,0 639 | Task Ma0gement,0,0,0,0,0,0,0,1,0 640 | Taxis,0,0,0,0,0,0,0,1,0 641 | Tea,0,0,0,0,0,0,0,1,0 642 | Technology,0,0,0,0,0,0,0,1,0 643 | Telecommunications,0,0,0,0,0,0,0,1,0 644 | Television,0,0,0,1,0,0,0,0,0 645 | Textiles,0,0,0,0,0,0,0,1,0 646 | Theatre,0,0,0,1,0,0,0,0,0 647 | Therapeutics,0,0,0,0,1,0,0,0,0 648 | Ticketing,0,0,0,1,0,0,0,0,0 649 | Tourism,0,0,0,1,0,0,0,0,0 650 | Tracking,0,0,0,0,0,0,0,1,0 651 | Trading,0,0,0,0,0,0,0,1,0 652 | Training,0,0,0,0,0,0,0,1,0 653 | Translation,0,0,0,0,0,0,0,1,0 654 | Transportation,1,0,0,0,0,0,0,0,0 655 | Travel,0,0,0,1,0,0,0,0,0 656 | Travel & Tourism,0,0,0,1,0,0,0,0,0 657 | Universities,0,0,0,0,0,0,0,1,0 658 | University Students,0,0,0,0,0,0,0,1,0 659 | Unmanned Air Systems,1,0,0,0,0,0,0,0,0 660 | Usability,0,0,0,0,0,0,0,1,0 661 | User Experience Design,0,0,0,0,0,0,0,1,0 662 | User Interface,0,0,0,0,0,0,0,1,0 663 | Utilities,0,0,0,0,0,0,0,1,0 664 | Vending and Concessions,0,0,0,0,0,0,0,1,0 665 | Venture Capital,0,0,0,0,0,0,0,0,1 666 | Veteri0ry,0,0,0,0,1,0,0,0,0 667 | Video,0,0,0,1,0,0,0,0,0 668 | Video Conferencing,0,0,0,1,0,0,0,0,0 669 | Video Games,0,0,0,1,0,0,0,0,0 670 | Video on Demand,0,0,0,1,0,0,0,0,0 671 | Video Streaming,0,0,0,1,0,0,0,0,0 672 | Virtual Workforces,0,0,0,1,0,0,0,0,0 673 | VoIP,0,0,0,1,0,0,0,0,0 674 | Waste Ma0gement,0,0,1,0,0,0,0,0,0 675 | Watch,0,0,0,0,0,0,0,1,0 676 | Water,0,0,1,0,0,0,0,0,0 677 | Water Purification,0,0,1,0,0,0,0,0,0 678 | Wearables,0,0,1,0,0,0,0,0,0 679 | Web Browsers,0,0,0,0,0,0,1,0,0 680 | Web Design,0,0,0,0,0,0,1,0,0 681 | Web Development,0,0,0,0,0,0,0,1,0 682 | Web Hosting,0,0,0,0,0,0,0,1,0 683 | Web Tools,0,0,0,0,0,0,0,1,0 684 | Weddings,0,0,0,1,0,0,0,0,0 685 | Wholesale,0,0,0,0,0,0,0,1,0 686 | Wine And Spirits,0,0,0,1,0,0,0,0,0 687 | Wireless,0,0,0,1,0,0,0,0,0 688 | Women,0,0,0,0,0,0,0,1,0 689 | Young Adults,0,0,0,0,0,0,0,1,0 690 | -------------------------------------------------------------------------------- /20. Investment Requirement Analysis for a Company/Real World Problem - Investment Requirement Analysis for a Company/Teclov_Investment Requirement Analysis/rounds2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/20. Investment Requirement Analysis for a Company/Real World Problem - Investment Requirement Analysis for a Company/Teclov_Investment Requirement Analysis/rounds2.csv -------------------------------------------------------------------------------- /21. Loan Analysis/Teclov_Loan Analysis/Teclov_Loan Analysis/Data_Dictionary.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/21. Loan Analysis/Teclov_Loan Analysis/Teclov_Loan Analysis/Data_Dictionary.xlsx -------------------------------------------------------------------------------- /21. Loan Analysis/Teclov_Loan Analysis/Teclov_Loan Analysis/Problem_statement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/21. Loan Analysis/Teclov_Loan Analysis/Teclov_Loan Analysis/Problem_statement.pdf -------------------------------------------------------------------------------- /21. Loan Analysis/Teclov_Loan Analysis/Teclov_Loan Analysis/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/21. Loan Analysis/Teclov_Loan Analysis/Teclov_Loan Analysis/Thumbs.db -------------------------------------------------------------------------------- /21. Loan Analysis/Teclov_Loan Analysis/Teclov_Loan Analysis/loan.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/21. Loan Analysis/Teclov_Loan Analysis/Teclov_Loan Analysis/loan.zip -------------------------------------------------------------------------------- /22. Car Project/Car Project/Car Project1/CarPrice_Assignment.csv: -------------------------------------------------------------------------------- 1 | car_ID,symboling,CarName,fueltype,aspiration,doornumber,carbody,drivewheel,enginelocation,wheelbase,carlength,carwidth,carheight,curbweight,enginetype,cylindernumber,enginesize,fuelsystem,boreratio,stroke,compressionratio,horsepower,peakrpm,citympg,highwaympg,price 2 | 1,3,alfa-romero giulia,gas,std,two,convertible,rwd,front,88.6,168.8,64.1,48.8,2548,dohc,four,130,mpfi,3.47,2.68,9,111,5000,21,27,13495 3 | 2,3,alfa-romero stelvio,gas,std,two,convertible,rwd,front,88.6,168.8,64.1,48.8,2548,dohc,four,130,mpfi,3.47,2.68,9,111,5000,21,27,16500 4 | 3,1,alfa-romero Quadrifoglio,gas,std,two,hatchback,rwd,front,94.5,171.2,65.5,52.4,2823,ohcv,six,152,mpfi,2.68,3.47,9,154,5000,19,26,16500 5 | 4,2,audi 100 ls,gas,std,four,sedan,fwd,front,99.8,176.6,66.2,54.3,2337,ohc,four,109,mpfi,3.19,3.4,10,102,5500,24,30,13950 6 | 5,2,audi 100ls,gas,std,four,sedan,4wd,front,99.4,176.6,66.4,54.3,2824,ohc,five,136,mpfi,3.19,3.4,8,115,5500,18,22,17450 7 | 6,2,audi fox,gas,std,two,sedan,fwd,front,99.8,177.3,66.3,53.1,2507,ohc,five,136,mpfi,3.19,3.4,8.5,110,5500,19,25,15250 8 | 7,1,audi 100ls,gas,std,four,sedan,fwd,front,105.8,192.7,71.4,55.7,2844,ohc,five,136,mpfi,3.19,3.4,8.5,110,5500,19,25,17710 9 | 8,1,audi 5000,gas,std,four,wagon,fwd,front,105.8,192.7,71.4,55.7,2954,ohc,five,136,mpfi,3.19,3.4,8.5,110,5500,19,25,18920 10 | 9,1,audi 4000,gas,turbo,four,sedan,fwd,front,105.8,192.7,71.4,55.9,3086,ohc,five,131,mpfi,3.13,3.4,8.3,140,5500,17,20,23875 11 | 10,0,audi 5000s (diesel),gas,turbo,two,hatchback,4wd,front,99.5,178.2,67.9,52,3053,ohc,five,131,mpfi,3.13,3.4,7,160,5500,16,22,17859.167 12 | 11,2,bmw 320i,gas,std,two,sedan,rwd,front,101.2,176.8,64.8,54.3,2395,ohc,four,108,mpfi,3.5,2.8,8.8,101,5800,23,29,16430 13 | 12,0,bmw 320i,gas,std,four,sedan,rwd,front,101.2,176.8,64.8,54.3,2395,ohc,four,108,mpfi,3.5,2.8,8.8,101,5800,23,29,16925 14 | 13,0,bmw x1,gas,std,two,sedan,rwd,front,101.2,176.8,64.8,54.3,2710,ohc,six,164,mpfi,3.31,3.19,9,121,4250,21,28,20970 15 | 14,0,bmw x3,gas,std,four,sedan,rwd,front,101.2,176.8,64.8,54.3,2765,ohc,six,164,mpfi,3.31,3.19,9,121,4250,21,28,21105 16 | 15,1,bmw z4,gas,std,four,sedan,rwd,front,103.5,189,66.9,55.7,3055,ohc,six,164,mpfi,3.31,3.19,9,121,4250,20,25,24565 17 | 16,0,bmw x4,gas,std,four,sedan,rwd,front,103.5,189,66.9,55.7,3230,ohc,six,209,mpfi,3.62,3.39,8,182,5400,16,22,30760 18 | 17,0,bmw x5,gas,std,two,sedan,rwd,front,103.5,193.8,67.9,53.7,3380,ohc,six,209,mpfi,3.62,3.39,8,182,5400,16,22,41315 19 | 18,0,bmw x3,gas,std,four,sedan,rwd,front,110,197,70.9,56.3,3505,ohc,six,209,mpfi,3.62,3.39,8,182,5400,15,20,36880 20 | 19,2,chevrolet impala,gas,std,two,hatchback,fwd,front,88.4,141.1,60.3,53.2,1488,l,three,61,2bbl,2.91,3.03,9.5,48,5100,47,53,5151 21 | 20,1,chevrolet monte carlo,gas,std,two,hatchback,fwd,front,94.5,155.9,63.6,52,1874,ohc,four,90,2bbl,3.03,3.11,9.6,70,5400,38,43,6295 22 | 21,0,chevrolet vega 2300,gas,std,four,sedan,fwd,front,94.5,158.8,63.6,52,1909,ohc,four,90,2bbl,3.03,3.11,9.6,70,5400,38,43,6575 23 | 22,1,dodge rampage,gas,std,two,hatchback,fwd,front,93.7,157.3,63.8,50.8,1876,ohc,four,90,2bbl,2.97,3.23,9.41,68,5500,37,41,5572 24 | 23,1,dodge challenger se,gas,std,two,hatchback,fwd,front,93.7,157.3,63.8,50.8,1876,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,6377 25 | 24,1,dodge d200,gas,turbo,two,hatchback,fwd,front,93.7,157.3,63.8,50.8,2128,ohc,four,98,mpfi,3.03,3.39,7.6,102,5500,24,30,7957 26 | 25,1,dodge monaco (sw),gas,std,four,hatchback,fwd,front,93.7,157.3,63.8,50.6,1967,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,6229 27 | 26,1,dodge colt hardtop,gas,std,four,sedan,fwd,front,93.7,157.3,63.8,50.6,1989,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,6692 28 | 27,1,dodge colt (sw),gas,std,four,sedan,fwd,front,93.7,157.3,63.8,50.6,1989,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,7609 29 | 28,1,dodge coronet custom,gas,turbo,two,sedan,fwd,front,93.7,157.3,63.8,50.6,2191,ohc,four,98,mpfi,3.03,3.39,7.6,102,5500,24,30,8558 30 | 29,-1,dodge dart custom,gas,std,four,wagon,fwd,front,103.3,174.6,64.6,59.8,2535,ohc,four,122,2bbl,3.34,3.46,8.5,88,5000,24,30,8921 31 | 30,3,dodge coronet custom (sw),gas,turbo,two,hatchback,fwd,front,95.9,173.2,66.3,50.2,2811,ohc,four,156,mfi,3.6,3.9,7,145,5000,19,24,12964 32 | 31,2,honda civic,gas,std,two,hatchback,fwd,front,86.6,144.6,63.9,50.8,1713,ohc,four,92,1bbl,2.91,3.41,9.6,58,4800,49,54,6479 33 | 32,2,honda civic cvcc,gas,std,two,hatchback,fwd,front,86.6,144.6,63.9,50.8,1819,ohc,four,92,1bbl,2.91,3.41,9.2,76,6000,31,38,6855 34 | 33,1,honda civic,gas,std,two,hatchback,fwd,front,93.7,150,64,52.6,1837,ohc,four,79,1bbl,2.91,3.07,10.1,60,5500,38,42,5399 35 | 34,1,honda accord cvcc,gas,std,two,hatchback,fwd,front,93.7,150,64,52.6,1940,ohc,four,92,1bbl,2.91,3.41,9.2,76,6000,30,34,6529 36 | 35,1,honda civic cvcc,gas,std,two,hatchback,fwd,front,93.7,150,64,52.6,1956,ohc,four,92,1bbl,2.91,3.41,9.2,76,6000,30,34,7129 37 | 36,0,honda accord lx,gas,std,four,sedan,fwd,front,96.5,163.4,64,54.5,2010,ohc,four,92,1bbl,2.91,3.41,9.2,76,6000,30,34,7295 38 | 37,0,honda civic 1500 gl,gas,std,four,wagon,fwd,front,96.5,157.1,63.9,58.3,2024,ohc,four,92,1bbl,2.92,3.41,9.2,76,6000,30,34,7295 39 | 38,0,honda accord,gas,std,two,hatchback,fwd,front,96.5,167.5,65.2,53.3,2236,ohc,four,110,1bbl,3.15,3.58,9,86,5800,27,33,7895 40 | 39,0,honda civic 1300,gas,std,two,hatchback,fwd,front,96.5,167.5,65.2,53.3,2289,ohc,four,110,1bbl,3.15,3.58,9,86,5800,27,33,9095 41 | 40,0,honda prelude,gas,std,four,sedan,fwd,front,96.5,175.4,65.2,54.1,2304,ohc,four,110,1bbl,3.15,3.58,9,86,5800,27,33,8845 42 | 41,0,honda accord,gas,std,four,sedan,fwd,front,96.5,175.4,62.5,54.1,2372,ohc,four,110,1bbl,3.15,3.58,9,86,5800,27,33,10295 43 | 42,0,honda civic,gas,std,four,sedan,fwd,front,96.5,175.4,65.2,54.1,2465,ohc,four,110,mpfi,3.15,3.58,9,101,5800,24,28,12945 44 | 43,1,honda civic (auto),gas,std,two,sedan,fwd,front,96.5,169.1,66,51,2293,ohc,four,110,2bbl,3.15,3.58,9.1,100,5500,25,31,10345 45 | 44,0,isuzu MU-X,gas,std,four,sedan,rwd,front,94.3,170.7,61.8,53.5,2337,ohc,four,111,2bbl,3.31,3.23,8.5,78,4800,24,29,6785 46 | 45,1,isuzu D-Max ,gas,std,two,sedan,fwd,front,94.5,155.9,63.6,52,1874,ohc,four,90,2bbl,3.03,3.11,9.6,70,5400,38,43,8916.5 47 | 46,0,isuzu D-Max V-Cross,gas,std,four,sedan,fwd,front,94.5,155.9,63.6,52,1909,ohc,four,90,2bbl,3.03,3.11,9.6,70,5400,38,43,8916.5 48 | 47,2,isuzu D-Max ,gas,std,two,hatchback,rwd,front,96,172.6,65.2,51.4,2734,ohc,four,119,spfi,3.43,3.23,9.2,90,5000,24,29,11048 49 | 48,0,jaguar xj,gas,std,four,sedan,rwd,front,113,199.6,69.6,52.8,4066,dohc,six,258,mpfi,3.63,4.17,8.1,176,4750,15,19,32250 50 | 49,0,jaguar xf,gas,std,four,sedan,rwd,front,113,199.6,69.6,52.8,4066,dohc,six,258,mpfi,3.63,4.17,8.1,176,4750,15,19,35550 51 | 50,0,jaguar xk,gas,std,two,sedan,rwd,front,102,191.7,70.6,47.8,3950,ohcv,twelve,326,mpfi,3.54,2.76,11.5,262,5000,13,17,36000 52 | 51,1,maxda rx3,gas,std,two,hatchback,fwd,front,93.1,159.1,64.2,54.1,1890,ohc,four,91,2bbl,3.03,3.15,9,68,5000,30,31,5195 53 | 52,1,maxda glc deluxe,gas,std,two,hatchback,fwd,front,93.1,159.1,64.2,54.1,1900,ohc,four,91,2bbl,3.03,3.15,9,68,5000,31,38,6095 54 | 53,1,mazda rx2 coupe,gas,std,two,hatchback,fwd,front,93.1,159.1,64.2,54.1,1905,ohc,four,91,2bbl,3.03,3.15,9,68,5000,31,38,6795 55 | 54,1,mazda rx-4,gas,std,four,sedan,fwd,front,93.1,166.8,64.2,54.1,1945,ohc,four,91,2bbl,3.03,3.15,9,68,5000,31,38,6695 56 | 55,1,mazda glc deluxe,gas,std,four,sedan,fwd,front,93.1,166.8,64.2,54.1,1950,ohc,four,91,2bbl,3.08,3.15,9,68,5000,31,38,7395 57 | 56,3,mazda 626,gas,std,two,hatchback,rwd,front,95.3,169,65.7,49.6,2380,rotor,two,70,4bbl,3.33,3.255,9.4,101,6000,17,23,10945 58 | 57,3,mazda glc,gas,std,two,hatchback,rwd,front,95.3,169,65.7,49.6,2380,rotor,two,70,4bbl,3.33,3.255,9.4,101,6000,17,23,11845 59 | 58,3,mazda rx-7 gs,gas,std,two,hatchback,rwd,front,95.3,169,65.7,49.6,2385,rotor,two,70,4bbl,3.33,3.255,9.4,101,6000,17,23,13645 60 | 59,3,mazda glc 4,gas,std,two,hatchback,rwd,front,95.3,169,65.7,49.6,2500,rotor,two,80,mpfi,3.33,3.255,9.4,135,6000,16,23,15645 61 | 60,1,mazda 626,gas,std,two,hatchback,fwd,front,98.8,177.8,66.5,53.7,2385,ohc,four,122,2bbl,3.39,3.39,8.6,84,4800,26,32,8845 62 | 61,0,mazda glc custom l,gas,std,four,sedan,fwd,front,98.8,177.8,66.5,55.5,2410,ohc,four,122,2bbl,3.39,3.39,8.6,84,4800,26,32,8495 63 | 62,1,mazda glc custom,gas,std,two,hatchback,fwd,front,98.8,177.8,66.5,53.7,2385,ohc,four,122,2bbl,3.39,3.39,8.6,84,4800,26,32,10595 64 | 63,0,mazda rx-4,gas,std,four,sedan,fwd,front,98.8,177.8,66.5,55.5,2410,ohc,four,122,2bbl,3.39,3.39,8.6,84,4800,26,32,10245 65 | 64,0,mazda glc deluxe,diesel,std,four,sedan,fwd,front,98.8,177.8,66.5,55.5,2443,ohc,four,122,idi,3.39,3.39,22.7,64,4650,36,42,10795 66 | 65,0,mazda 626,gas,std,four,hatchback,fwd,front,98.8,177.8,66.5,55.5,2425,ohc,four,122,2bbl,3.39,3.39,8.6,84,4800,26,32,11245 67 | 66,0,mazda glc,gas,std,four,sedan,rwd,front,104.9,175,66.1,54.4,2670,ohc,four,140,mpfi,3.76,3.16,8,120,5000,19,27,18280 68 | 67,0,mazda rx-7 gs,diesel,std,four,sedan,rwd,front,104.9,175,66.1,54.4,2700,ohc,four,134,idi,3.43,3.64,22,72,4200,31,39,18344 69 | 68,-1,buick electra 225 custom,diesel,turbo,four,sedan,rwd,front,110,190.9,70.3,56.5,3515,ohc,five,183,idi,3.58,3.64,21.5,123,4350,22,25,25552 70 | 69,-1,buick century luxus (sw),diesel,turbo,four,wagon,rwd,front,110,190.9,70.3,58.7,3750,ohc,five,183,idi,3.58,3.64,21.5,123,4350,22,25,28248 71 | 70,0,buick century,diesel,turbo,two,hardtop,rwd,front,106.7,187.5,70.3,54.9,3495,ohc,five,183,idi,3.58,3.64,21.5,123,4350,22,25,28176 72 | 71,-1,buick skyhawk,diesel,turbo,four,sedan,rwd,front,115.6,202.6,71.7,56.3,3770,ohc,five,183,idi,3.58,3.64,21.5,123,4350,22,25,31600 73 | 72,-1,buick opel isuzu deluxe,gas,std,four,sedan,rwd,front,115.6,202.6,71.7,56.5,3740,ohcv,eight,234,mpfi,3.46,3.1,8.3,155,4750,16,18,34184 74 | 73,3,buick skylark,gas,std,two,convertible,rwd,front,96.6,180.3,70.5,50.8,3685,ohcv,eight,234,mpfi,3.46,3.1,8.3,155,4750,16,18,35056 75 | 74,0,buick century special,gas,std,four,sedan,rwd,front,120.9,208.1,71.7,56.7,3900,ohcv,eight,308,mpfi,3.8,3.35,8,184,4500,14,16,40960 76 | 75,1,buick regal sport coupe (turbo),gas,std,two,hardtop,rwd,front,112,199.2,72,55.4,3715,ohcv,eight,304,mpfi,3.8,3.35,8,184,4500,14,16,45400 77 | 76,1,mercury cougar,gas,turbo,two,hatchback,rwd,front,102.7,178.4,68,54.8,2910,ohc,four,140,mpfi,3.78,3.12,8,175,5000,19,24,16503 78 | 77,2,mitsubishi mirage,gas,std,two,hatchback,fwd,front,93.7,157.3,64.4,50.8,1918,ohc,four,92,2bbl,2.97,3.23,9.4,68,5500,37,41,5389 79 | 78,2,mitsubishi lancer,gas,std,two,hatchback,fwd,front,93.7,157.3,64.4,50.8,1944,ohc,four,92,2bbl,2.97,3.23,9.4,68,5500,31,38,6189 80 | 79,2,mitsubishi outlander,gas,std,two,hatchback,fwd,front,93.7,157.3,64.4,50.8,2004,ohc,four,92,2bbl,2.97,3.23,9.4,68,5500,31,38,6669 81 | 80,1,mitsubishi g4,gas,turbo,two,hatchback,fwd,front,93,157.3,63.8,50.8,2145,ohc,four,98,spdi,3.03,3.39,7.6,102,5500,24,30,7689 82 | 81,3,mitsubishi mirage g4,gas,turbo,two,hatchback,fwd,front,96.3,173,65.4,49.4,2370,ohc,four,110,spdi,3.17,3.46,7.5,116,5500,23,30,9959 83 | 82,3,mitsubishi g4,gas,std,two,hatchback,fwd,front,96.3,173,65.4,49.4,2328,ohc,four,122,2bbl,3.35,3.46,8.5,88,5000,25,32,8499 84 | 83,3,mitsubishi outlander,gas,turbo,two,hatchback,fwd,front,95.9,173.2,66.3,50.2,2833,ohc,four,156,spdi,3.58,3.86,7,145,5000,19,24,12629 85 | 84,3,mitsubishi g4,gas,turbo,two,hatchback,fwd,front,95.9,173.2,66.3,50.2,2921,ohc,four,156,spdi,3.59,3.86,7,145,5000,19,24,14869 86 | 85,3,mitsubishi mirage g4,gas,turbo,two,hatchback,fwd,front,95.9,173.2,66.3,50.2,2926,ohc,four,156,spdi,3.59,3.86,7,145,5000,19,24,14489 87 | 86,1,mitsubishi montero,gas,std,four,sedan,fwd,front,96.3,172.4,65.4,51.6,2365,ohc,four,122,2bbl,3.35,3.46,8.5,88,5000,25,32,6989 88 | 87,1,mitsubishi pajero,gas,std,four,sedan,fwd,front,96.3,172.4,65.4,51.6,2405,ohc,four,122,2bbl,3.35,3.46,8.5,88,5000,25,32,8189 89 | 88,1,mitsubishi outlander,gas,turbo,four,sedan,fwd,front,96.3,172.4,65.4,51.6,2403,ohc,four,110,spdi,3.17,3.46,7.5,116,5500,23,30,9279 90 | 89,-1,mitsubishi mirage g4,gas,std,four,sedan,fwd,front,96.3,172.4,65.4,51.6,2403,ohc,four,110,spdi,3.17,3.46,7.5,116,5500,23,30,9279 91 | 90,1,Nissan versa,gas,std,two,sedan,fwd,front,94.5,165.3,63.8,54.5,1889,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,5499 92 | 91,1,nissan gt-r,diesel,std,two,sedan,fwd,front,94.5,165.3,63.8,54.5,2017,ohc,four,103,idi,2.99,3.47,21.9,55,4800,45,50,7099 93 | 92,1,nissan rogue,gas,std,two,sedan,fwd,front,94.5,165.3,63.8,54.5,1918,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,6649 94 | 93,1,nissan latio,gas,std,four,sedan,fwd,front,94.5,165.3,63.8,54.5,1938,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,6849 95 | 94,1,nissan titan,gas,std,four,wagon,fwd,front,94.5,170.2,63.8,53.5,2024,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,7349 96 | 95,1,nissan leaf,gas,std,two,sedan,fwd,front,94.5,165.3,63.8,54.5,1951,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,7299 97 | 96,1,nissan juke,gas,std,two,hatchback,fwd,front,94.5,165.6,63.8,53.3,2028,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,7799 98 | 97,1,nissan latio,gas,std,four,sedan,fwd,front,94.5,165.3,63.8,54.5,1971,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,7499 99 | 98,1,nissan note,gas,std,four,wagon,fwd,front,94.5,170.2,63.8,53.5,2037,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,7999 100 | 99,2,nissan clipper,gas,std,two,hardtop,fwd,front,95.1,162.4,63.8,53.3,2008,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,8249 101 | 100,0,nissan rogue,gas,std,four,hatchback,fwd,front,97.2,173.4,65.2,54.7,2324,ohc,four,120,2bbl,3.33,3.47,8.5,97,5200,27,34,8949 102 | 101,0,nissan nv200,gas,std,four,sedan,fwd,front,97.2,173.4,65.2,54.7,2302,ohc,four,120,2bbl,3.33,3.47,8.5,97,5200,27,34,9549 103 | 102,0,nissan dayz,gas,std,four,sedan,fwd,front,100.4,181.7,66.5,55.1,3095,ohcv,six,181,mpfi,3.43,3.27,9,152,5200,17,22,13499 104 | 103,0,nissan fuga,gas,std,four,wagon,fwd,front,100.4,184.6,66.5,56.1,3296,ohcv,six,181,mpfi,3.43,3.27,9,152,5200,17,22,14399 105 | 104,0,nissan otti,gas,std,four,sedan,fwd,front,100.4,184.6,66.5,55.1,3060,ohcv,six,181,mpfi,3.43,3.27,9,152,5200,19,25,13499 106 | 105,3,nissan teana,gas,std,two,hatchback,rwd,front,91.3,170.7,67.9,49.7,3071,ohcv,six,181,mpfi,3.43,3.27,9,160,5200,19,25,17199 107 | 106,3,nissan kicks,gas,turbo,two,hatchback,rwd,front,91.3,170.7,67.9,49.7,3139,ohcv,six,181,mpfi,3.43,3.27,7.8,200,5200,17,23,19699 108 | 107,1,nissan clipper,gas,std,two,hatchback,rwd,front,99.2,178.5,67.9,49.7,3139,ohcv,six,181,mpfi,3.43,3.27,9,160,5200,19,25,18399 109 | 108,0,peugeot 504,gas,std,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3020,l,four,120,mpfi,3.46,3.19,8.4,97,5000,19,24,11900 110 | 109,0,peugeot 304,diesel,turbo,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3197,l,four,152,idi,3.7,3.52,21,95,4150,28,33,13200 111 | 110,0,peugeot 504 (sw),gas,std,four,wagon,rwd,front,114.2,198.9,68.4,58.7,3230,l,four,120,mpfi,3.46,3.19,8.4,97,5000,19,24,12440 112 | 111,0,peugeot 504,diesel,turbo,four,wagon,rwd,front,114.2,198.9,68.4,58.7,3430,l,four,152,idi,3.7,3.52,21,95,4150,25,25,13860 113 | 112,0,peugeot 504,gas,std,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3075,l,four,120,mpfi,3.46,2.19,8.4,95,5000,19,24,15580 114 | 113,0,peugeot 604sl,diesel,turbo,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3252,l,four,152,idi,3.7,3.52,21,95,4150,28,33,16900 115 | 114,0,peugeot 504,gas,std,four,wagon,rwd,front,114.2,198.9,68.4,56.7,3285,l,four,120,mpfi,3.46,2.19,8.4,95,5000,19,24,16695 116 | 115,0,peugeot 505s turbo diesel,diesel,turbo,four,wagon,rwd,front,114.2,198.9,68.4,58.7,3485,l,four,152,idi,3.7,3.52,21,95,4150,25,25,17075 117 | 116,0,peugeot 504,gas,std,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3075,l,four,120,mpfi,3.46,3.19,8.4,97,5000,19,24,16630 118 | 117,0,peugeot 504,diesel,turbo,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3252,l,four,152,idi,3.7,3.52,21,95,4150,28,33,17950 119 | 118,0,peugeot 604sl,gas,turbo,four,sedan,rwd,front,108,186.7,68.3,56,3130,l,four,134,mpfi,3.61,3.21,7,142,5600,18,24,18150 120 | 119,1,plymouth fury iii,gas,std,two,hatchback,fwd,front,93.7,157.3,63.8,50.8,1918,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,37,41,5572 121 | 120,1,plymouth cricket,gas,turbo,two,hatchback,fwd,front,93.7,157.3,63.8,50.8,2128,ohc,four,98,spdi,3.03,3.39,7.6,102,5500,24,30,7957 122 | 121,1,plymouth fury iii,gas,std,four,hatchback,fwd,front,93.7,157.3,63.8,50.6,1967,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,6229 123 | 122,1,plymouth satellite custom (sw),gas,std,four,sedan,fwd,front,93.7,167.3,63.8,50.8,1989,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,6692 124 | 123,1,plymouth fury gran sedan,gas,std,four,sedan,fwd,front,93.7,167.3,63.8,50.8,2191,ohc,four,98,2bbl,2.97,3.23,9.4,68,5500,31,38,7609 125 | 124,-1,plymouth valiant,gas,std,four,wagon,fwd,front,103.3,174.6,64.6,59.8,2535,ohc,four,122,2bbl,3.35,3.46,8.5,88,5000,24,30,8921 126 | 125,3,plymouth duster,gas,turbo,two,hatchback,rwd,front,95.9,173.2,66.3,50.2,2818,ohc,four,156,spdi,3.59,3.86,7,145,5000,19,24,12764 127 | 126,3,porsche macan,gas,std,two,hatchback,rwd,front,94.5,168.9,68.3,50.2,2778,ohc,four,151,mpfi,3.94,3.11,9.5,143,5500,19,27,22018 128 | 127,3,porcshce panamera,gas,std,two,hardtop,rwd,rear,89.5,168.9,65,51.6,2756,ohcf,six,194,mpfi,3.74,2.9,9.5,207,5900,17,25,32528 129 | 128,3,porsche cayenne,gas,std,two,hardtop,rwd,rear,89.5,168.9,65,51.6,2756,ohcf,six,194,mpfi,3.74,2.9,9.5,207,5900,17,25,34028 130 | 129,3,porsche boxter,gas,std,two,convertible,rwd,rear,89.5,168.9,65,51.6,2800,ohcf,six,194,mpfi,3.74,2.9,9.5,207,5900,17,25,37028 131 | 130,1,porsche cayenne,gas,std,two,hatchback,rwd,front,98.4,175.7,72.3,50.5,3366,dohcv,eight,203,mpfi,3.94,3.11,10,288,5750,17,28,31400.5 132 | 131,0,renault 12tl,gas,std,four,wagon,fwd,front,96.1,181.5,66.5,55.2,2579,ohc,four,132,mpfi,3.46,3.9,8.7,90,5100,23,31,9295 133 | 132,2,renault 5 gtl,gas,std,two,hatchback,fwd,front,96.1,176.8,66.6,50.5,2460,ohc,four,132,mpfi,3.46,3.9,8.7,90,5100,23,31,9895 134 | 133,3,saab 99e,gas,std,two,hatchback,fwd,front,99.1,186.6,66.5,56.1,2658,ohc,four,121,mpfi,3.54,3.07,9.31,110,5250,21,28,11850 135 | 134,2,saab 99le,gas,std,four,sedan,fwd,front,99.1,186.6,66.5,56.1,2695,ohc,four,121,mpfi,3.54,3.07,9.3,110,5250,21,28,12170 136 | 135,3,saab 99le,gas,std,two,hatchback,fwd,front,99.1,186.6,66.5,56.1,2707,ohc,four,121,mpfi,2.54,2.07,9.3,110,5250,21,28,15040 137 | 136,2,saab 99gle,gas,std,four,sedan,fwd,front,99.1,186.6,66.5,56.1,2758,ohc,four,121,mpfi,3.54,3.07,9.3,110,5250,21,28,15510 138 | 137,3,saab 99gle,gas,turbo,two,hatchback,fwd,front,99.1,186.6,66.5,56.1,2808,dohc,four,121,mpfi,3.54,3.07,9,160,5500,19,26,18150 139 | 138,2,saab 99e,gas,turbo,four,sedan,fwd,front,99.1,186.6,66.5,56.1,2847,dohc,four,121,mpfi,3.54,3.07,9,160,5500,19,26,18620 140 | 139,2,subaru,gas,std,two,hatchback,fwd,front,93.7,156.9,63.4,53.7,2050,ohcf,four,97,2bbl,3.62,2.36,9,69,4900,31,36,5118 141 | 140,2,subaru dl,gas,std,two,hatchback,fwd,front,93.7,157.9,63.6,53.7,2120,ohcf,four,108,2bbl,3.62,2.64,8.7,73,4400,26,31,7053 142 | 141,2,subaru dl,gas,std,two,hatchback,4wd,front,93.3,157.3,63.8,55.7,2240,ohcf,four,108,2bbl,3.62,2.64,8.7,73,4400,26,31,7603 143 | 142,0,subaru,gas,std,four,sedan,fwd,front,97.2,172,65.4,52.5,2145,ohcf,four,108,2bbl,3.62,2.64,9.5,82,4800,32,37,7126 144 | 143,0,subaru brz,gas,std,four,sedan,fwd,front,97.2,172,65.4,52.5,2190,ohcf,four,108,2bbl,3.62,2.64,9.5,82,4400,28,33,7775 145 | 144,0,subaru baja,gas,std,four,sedan,fwd,front,97.2,172,65.4,52.5,2340,ohcf,four,108,mpfi,3.62,2.64,9,94,5200,26,32,9960 146 | 145,0,subaru r1,gas,std,four,sedan,4wd,front,97,172,65.4,54.3,2385,ohcf,four,108,2bbl,3.62,2.64,9,82,4800,24,25,9233 147 | 146,0,subaru r2,gas,turbo,four,sedan,4wd,front,97,172,65.4,54.3,2510,ohcf,four,108,mpfi,3.62,2.64,7.7,111,4800,24,29,11259 148 | 147,0,subaru trezia,gas,std,four,wagon,fwd,front,97,173.5,65.4,53,2290,ohcf,four,108,2bbl,3.62,2.64,9,82,4800,28,32,7463 149 | 148,0,subaru tribeca,gas,std,four,wagon,fwd,front,97,173.5,65.4,53,2455,ohcf,four,108,mpfi,3.62,2.64,9,94,5200,25,31,10198 150 | 149,0,subaru dl,gas,std,four,wagon,4wd,front,96.9,173.6,65.4,54.9,2420,ohcf,four,108,2bbl,3.62,2.64,9,82,4800,23,29,8013 151 | 150,0,subaru dl,gas,turbo,four,wagon,4wd,front,96.9,173.6,65.4,54.9,2650,ohcf,four,108,mpfi,3.62,2.64,7.7,111,4800,23,23,11694 152 | 151,1,toyota corona mark ii,gas,std,two,hatchback,fwd,front,95.7,158.7,63.6,54.5,1985,ohc,four,92,2bbl,3.05,3.03,9,62,4800,35,39,5348 153 | 152,1,toyota corona,gas,std,two,hatchback,fwd,front,95.7,158.7,63.6,54.5,2040,ohc,four,92,2bbl,3.05,3.03,9,62,4800,31,38,6338 154 | 153,1,toyota corolla 1200,gas,std,four,hatchback,fwd,front,95.7,158.7,63.6,54.5,2015,ohc,four,92,2bbl,3.05,3.03,9,62,4800,31,38,6488 155 | 154,0,toyota corona hardtop,gas,std,four,wagon,fwd,front,95.7,169.7,63.6,59.1,2280,ohc,four,92,2bbl,3.05,3.03,9,62,4800,31,37,6918 156 | 155,0,toyota corolla 1600 (sw),gas,std,four,wagon,4wd,front,95.7,169.7,63.6,59.1,2290,ohc,four,92,2bbl,3.05,3.03,9,62,4800,27,32,7898 157 | 156,0,toyota carina,gas,std,four,wagon,4wd,front,95.7,169.7,63.6,59.1,3110,ohc,four,92,2bbl,3.05,3.03,9,62,4800,27,32,8778 158 | 157,0,toyota mark ii,gas,std,four,sedan,fwd,front,95.7,166.3,64.4,53,2081,ohc,four,98,2bbl,3.19,3.03,9,70,4800,30,37,6938 159 | 158,0,toyota corolla 1200,gas,std,four,hatchback,fwd,front,95.7,166.3,64.4,52.8,2109,ohc,four,98,2bbl,3.19,3.03,9,70,4800,30,37,7198 160 | 159,0,toyota corona,diesel,std,four,sedan,fwd,front,95.7,166.3,64.4,53,2275,ohc,four,110,idi,3.27,3.35,22.5,56,4500,34,36,7898 161 | 160,0,toyota corolla,diesel,std,four,hatchback,fwd,front,95.7,166.3,64.4,52.8,2275,ohc,four,110,idi,3.27,3.35,22.5,56,4500,38,47,7788 162 | 161,0,toyota corona,gas,std,four,sedan,fwd,front,95.7,166.3,64.4,53,2094,ohc,four,98,2bbl,3.19,3.03,9,70,4800,38,47,7738 163 | 162,0,toyota corolla,gas,std,four,hatchback,fwd,front,95.7,166.3,64.4,52.8,2122,ohc,four,98,2bbl,3.19,3.03,9,70,4800,28,34,8358 164 | 163,0,toyota mark ii,gas,std,four,sedan,fwd,front,95.7,166.3,64.4,52.8,2140,ohc,four,98,2bbl,3.19,3.03,9,70,4800,28,34,9258 165 | 164,1,toyota corolla liftback,gas,std,two,sedan,rwd,front,94.5,168.7,64,52.6,2169,ohc,four,98,2bbl,3.19,3.03,9,70,4800,29,34,8058 166 | 165,1,toyota corona,gas,std,two,hatchback,rwd,front,94.5,168.7,64,52.6,2204,ohc,four,98,2bbl,3.19,3.03,9,70,4800,29,34,8238 167 | 166,1,toyota celica gt liftback,gas,std,two,sedan,rwd,front,94.5,168.7,64,52.6,2265,dohc,four,98,mpfi,3.24,3.08,9.4,112,6600,26,29,9298 168 | 167,1,toyota corolla tercel,gas,std,two,hatchback,rwd,front,94.5,168.7,64,52.6,2300,dohc,four,98,mpfi,3.24,3.08,9.4,112,6600,26,29,9538 169 | 168,2,toyota corona liftback,gas,std,two,hardtop,rwd,front,98.4,176.2,65.6,52,2540,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,8449 170 | 169,2,toyota corolla,gas,std,two,hardtop,rwd,front,98.4,176.2,65.6,52,2536,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,9639 171 | 170,2,toyota starlet,gas,std,two,hatchback,rwd,front,98.4,176.2,65.6,52,2551,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,9989 172 | 171,2,toyota tercel,gas,std,two,hardtop,rwd,front,98.4,176.2,65.6,52,2679,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,11199 173 | 172,2,toyota corolla,gas,std,two,hatchback,rwd,front,98.4,176.2,65.6,52,2714,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,11549 174 | 173,2,toyota cressida,gas,std,two,convertible,rwd,front,98.4,176.2,65.6,53,2975,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,17669 175 | 174,-1,toyota corolla,gas,std,four,sedan,fwd,front,102.4,175.6,66.5,54.9,2326,ohc,four,122,mpfi,3.31,3.54,8.7,92,4200,29,34,8948 176 | 175,-1,toyota celica gt,diesel,turbo,four,sedan,fwd,front,102.4,175.6,66.5,54.9,2480,ohc,four,110,idi,3.27,3.35,22.5,73,4500,30,33,10698 177 | 176,-1,toyota corona,gas,std,four,hatchback,fwd,front,102.4,175.6,66.5,53.9,2414,ohc,four,122,mpfi,3.31,3.54,8.7,92,4200,27,32,9988 178 | 177,-1,toyota corolla,gas,std,four,sedan,fwd,front,102.4,175.6,66.5,54.9,2414,ohc,four,122,mpfi,3.31,3.54,8.7,92,4200,27,32,10898 179 | 178,-1,toyota mark ii,gas,std,four,hatchback,fwd,front,102.4,175.6,66.5,53.9,2458,ohc,four,122,mpfi,3.31,3.54,8.7,92,4200,27,32,11248 180 | 179,3,toyota corolla liftback,gas,std,two,hatchback,rwd,front,102.9,183.5,67.7,52,2976,dohc,six,171,mpfi,3.27,3.35,9.3,161,5200,20,24,16558 181 | 180,3,toyota corona,gas,std,two,hatchback,rwd,front,102.9,183.5,67.7,52,3016,dohc,six,171,mpfi,3.27,3.35,9.3,161,5200,19,24,15998 182 | 181,-1,toyota starlet,gas,std,four,sedan,rwd,front,104.5,187.8,66.5,54.1,3131,dohc,six,171,mpfi,3.27,3.35,9.2,156,5200,20,24,15690 183 | 182,-1,toyouta tercel,gas,std,four,wagon,rwd,front,104.5,187.8,66.5,54.1,3151,dohc,six,161,mpfi,3.27,3.35,9.2,156,5200,19,24,15750 184 | 183,2,vokswagen rabbit,diesel,std,two,sedan,fwd,front,97.3,171.7,65.5,55.7,2261,ohc,four,97,idi,3.01,3.4,23,52,4800,37,46,7775 185 | 184,2,volkswagen 1131 deluxe sedan,gas,std,two,sedan,fwd,front,97.3,171.7,65.5,55.7,2209,ohc,four,109,mpfi,3.19,3.4,9,85,5250,27,34,7975 186 | 185,2,volkswagen model 111,diesel,std,four,sedan,fwd,front,97.3,171.7,65.5,55.7,2264,ohc,four,97,idi,3.01,3.4,23,52,4800,37,46,7995 187 | 186,2,volkswagen type 3,gas,std,four,sedan,fwd,front,97.3,171.7,65.5,55.7,2212,ohc,four,109,mpfi,3.19,3.4,9,85,5250,27,34,8195 188 | 187,2,volkswagen 411 (sw),gas,std,four,sedan,fwd,front,97.3,171.7,65.5,55.7,2275,ohc,four,109,mpfi,3.19,3.4,9,85,5250,27,34,8495 189 | 188,2,volkswagen super beetle,diesel,turbo,four,sedan,fwd,front,97.3,171.7,65.5,55.7,2319,ohc,four,97,idi,3.01,3.4,23,68,4500,37,42,9495 190 | 189,2,volkswagen dasher,gas,std,four,sedan,fwd,front,97.3,171.7,65.5,55.7,2300,ohc,four,109,mpfi,3.19,3.4,10,100,5500,26,32,9995 191 | 190,3,vw dasher,gas,std,two,convertible,fwd,front,94.5,159.3,64.2,55.6,2254,ohc,four,109,mpfi,3.19,3.4,8.5,90,5500,24,29,11595 192 | 191,3,vw rabbit,gas,std,two,hatchback,fwd,front,94.5,165.7,64,51.4,2221,ohc,four,109,mpfi,3.19,3.4,8.5,90,5500,24,29,9980 193 | 192,0,volkswagen rabbit,gas,std,four,sedan,fwd,front,100.4,180.2,66.9,55.1,2661,ohc,five,136,mpfi,3.19,3.4,8.5,110,5500,19,24,13295 194 | 193,0,volkswagen rabbit custom,diesel,turbo,four,sedan,fwd,front,100.4,180.2,66.9,55.1,2579,ohc,four,97,idi,3.01,3.4,23,68,4500,33,38,13845 195 | 194,0,volkswagen dasher,gas,std,four,wagon,fwd,front,100.4,183.1,66.9,55.1,2563,ohc,four,109,mpfi,3.19,3.4,9,88,5500,25,31,12290 196 | 195,-2,volvo 145e (sw),gas,std,four,sedan,rwd,front,104.3,188.8,67.2,56.2,2912,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,23,28,12940 197 | 196,-1,volvo 144ea,gas,std,four,wagon,rwd,front,104.3,188.8,67.2,57.5,3034,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,23,28,13415 198 | 197,-2,volvo 244dl,gas,std,four,sedan,rwd,front,104.3,188.8,67.2,56.2,2935,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,24,28,15985 199 | 198,-1,volvo 245,gas,std,four,wagon,rwd,front,104.3,188.8,67.2,57.5,3042,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,24,28,16515 200 | 199,-2,volvo 264gl,gas,turbo,four,sedan,rwd,front,104.3,188.8,67.2,56.2,3045,ohc,four,130,mpfi,3.62,3.15,7.5,162,5100,17,22,18420 201 | 200,-1,volvo diesel,gas,turbo,four,wagon,rwd,front,104.3,188.8,67.2,57.5,3157,ohc,four,130,mpfi,3.62,3.15,7.5,162,5100,17,22,18950 202 | 201,-1,volvo 145e (sw),gas,std,four,sedan,rwd,front,109.1,188.8,68.9,55.5,2952,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,23,28,16845 203 | 202,-1,volvo 144ea,gas,turbo,four,sedan,rwd,front,109.1,188.8,68.8,55.5,3049,ohc,four,141,mpfi,3.78,3.15,8.7,160,5300,19,25,19045 204 | 203,-1,volvo 244dl,gas,std,four,sedan,rwd,front,109.1,188.8,68.9,55.5,3012,ohcv,six,173,mpfi,3.58,2.87,8.8,134,5500,18,23,21485 205 | 204,-1,volvo 246,diesel,turbo,four,sedan,rwd,front,109.1,188.8,68.9,55.5,3217,ohc,six,145,idi,3.01,3.4,23,106,4800,26,27,22470 206 | 205,-1,volvo 264gl,gas,turbo,four,sedan,rwd,front,109.1,188.8,68.9,55.5,3062,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,19,25,22625 207 | -------------------------------------------------------------------------------- /22. Car Project/Car Project/Car Project1/Data Dictionary - carprices.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/22. Car Project/Car Project/Car Project1/Data Dictionary - carprices.xlsx -------------------------------------------------------------------------------- /22. Car Project/Car Project/Car Project1/Teclov_Problemdesc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/22. Car Project/Car Project/Car Project1/Teclov_Problemdesc.pdf -------------------------------------------------------------------------------- /3. Hotstar_Netflix_Case Study/Hotstar_Netflix_Case Study/Hotstar_Netfilx_Case Study/mediacompany.csv: -------------------------------------------------------------------------------- 1 | Date,Views_show,Visitors,Views_platform,Ad_impression,Cricket_match_india,Character_A, 3/1/2017,183738,1260228,1706478,1060860448,0,0, 3/2/2017,193763,1270561,1690727,1031846645,0,0, 3/3/2017,210479,1248183,1726157,1010867575,0,0, 3/4/2017,240061,1492913,1855353,1079194579,1,0, 3/5/2017,446314,1594712,2041418,1357736987,0,0, 3/6/2017,342997,1330689,1742540,1140228426,0,0, 3/7/2017,227313,1363579,1821742,1113811802,0,0, 3/8/2017,180313,1353483,1795456,1083475096,0,0, 3/9/2017,178800,1345428,1794157,1067636147,0,0, 3/10/2017,201180,1344540,1834967,1081234843,0,0, 3/11/2017,218956,1500926,1926280,1119900035,0,0, 3/12/2017,437117,1554859,2015050,1390620085,0,0, 3/13/2017,263638,1438887,1808967,1231295791,0,0, 3/14/2017,185896,1459500,1864134,1210330496,0,0, 3/15/2017,184346,1410668,1896352,1189319112,0,0, 3/16/2017,132409,1394130,1867785,1152287474,0,0, 3/17/2017,169225,1438125,1885937,1172698178,0,0, 3/18/2017,251851,1582773,2016477,1329477115,0,0, 3/19/2017,476130,1723653,2155393,1714732753,0,0, 3/20/2017,279880,1528669,1924030,1588375831,0,0, 3/21/2017,215077,1538487,2015064,1554738251,0,0, 3/22/2017,173280,1474098,1967000,1439043318,0,0, 3/23/2017,200993,1484382,1998116,1420880566,0,0, 3/24/2017,206830,1461298,1965232,1402238110,0,0, 3/25/2017,236106,1678527,2096071,1469853604,0,1, 3/26/2017,650563,1924046,2465763,2158026705,0,1, 3/27/2017,460492,1612675,2165206,1928850028,0,1, 3/28/2017,379396,1635533,2241286,1830391771,0,1, 3/29/2017,343223,1568398,2224833,1710096924,0,1, 3/30/2017,333613,1630580,2134012,1654933815,0,1, 3/31/2017,281706,1588526,1998083,1557197792,0,1, 4/1/2017,296772,1684842,2186053,1663798844,0,1, 4/2/2017,679522,1902556,2535991,2424202948,0,1, 4/3/2017,418659,1668290,2226838,2162241492,0,1, 4/4/2017,360660,1727040,2347514,1972773720,0,1, 4/5/2017,244916,1615949,2184161,1690425253,0,1, 4/6/2017,218302,1589841,2172278,1629943055,0,1, 4/7/2017,235508,1568119,2149159,1477621057,0,1, 4/8/2017,465382,1834463,2543190,1741517106,0,1, 4/9/2017,691068,1981242,2726690,2122330957,0,1, 4/10/2017,353292,1689178,2279573,1701965040,0,1, 4/11/2017,272079,1700031,2344060,1525321166,0,1, 4/12/2017,190287,1598403,2281562,1407426028,0,1, 4/13/2017,206740,1613314,2309186,1361116025,0,1, 4/14/2017,234306,1697655,2434685,1359796055,0,1, 4/15/2017,537050,1917386,2795683,1700040542,0,1, 4/16/2017,758631,2026102,2933930,1992525162,0,1, 4/17/2017,376879,1811644,2509254,1639833687,0,1, 4/18/2017,241042,1812134,2492946,1498413829,0,1, 4/19/2017,197201,1796219,2420223,1391566531,0,1, 4/20/2017,169074,1785345,2390240,1346215059,0,1, 4/21/2017,182208,1810697,2387054,1323744093,0,1, 4/22/2017,369758,2143350,2704661,1336157323,0,1, 4/23/2017,712778,2344650,3064422,1890967819,0,1, 4/24/2017,349008,2060757,2560083,1590193671,0,0, 4/25/2017,218466,1928796,2441818,1383577770,0,0, 4/26/2017,208445,1848354,2388369,1294777190,0,0, 4/27/2017,164043,1772449,2303380,1216537437,0,0, 4/28/2017,162815,1727098,2189048,1145369229,0,0, 4/29/2017,266086,1953231,2462984,1200654188,0,0, 4/30/2017,544814,2187064,2731451,1698345214,0,0, 5/1/2017,279700,1904704,2323887,1623666951,0,0, 5/2/2017,196026,1816855,2294150,1388283566,0,0, 5/3/2017,162150,1780230,2278880,1262254571,0,0, 5/4/2017,143112,1731468,2214359,1199377174,0,0, 5/5/2017,140666,1738676,2160395,1189257839,0,0, 5/6/2017,280065,2016144,2423599,1342773863,0,0, 5/7/2017,562943,2163629,2681882,1686752144,0,0, 5/8/2017,271341,1840748,2249542,1403797010,0,0, 5/9/2017,217791,1821016,2313219,1321700567,0,0, 5/10/2017,142302,1784534,2256757,1229347176,0,0, 5/11/2017,110202,1689260,2145511,1146505497,0,0, 5/12/2017,102520,1697576,2135342,1161183285,0,0, 5/13/2017,253228,1900320,2340236,1190253439,1,0, 5/14/2017,631962,2135756,2603553,1614010862,1,0, 5/15/2017,313945,1808684,2226788,1398052759,1,0, 5/16/2017,185689,1814227,2199844,1311961223,1,0, 5/17/2017,142260,1755803,2225752,1248266254,1,0, 5/18/2017,135871,1749654,2302789,1284859759,1,0, 5/19/2017,108961,1746735,2279036,1246026846,1,0, 2 | -------------------------------------------------------------------------------- /4. Gradient_Descent/Gradient-Descent-Updated/Gradient Descent Updated/gd.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/4. Gradient_Descent/Gradient-Descent-Updated/Gradient Descent Updated/gd.PNG -------------------------------------------------------------------------------- /4. Gradient_Descent/Gradient-Descent-Updated/Gradient Descent Updated/gd1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/4. Gradient_Descent/Gradient-Descent-Updated/Gradient Descent Updated/gd1.PNG -------------------------------------------------------------------------------- /4. Gradient_Descent/Gradient-Descent-Updated/Gradient Descent Updated/gd2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/4. Gradient_Descent/Gradient-Descent-Updated/Gradient Descent Updated/gd2.PNG -------------------------------------------------------------------------------- /5. KNN/KNN/demo_data/1.ushape.csv: -------------------------------------------------------------------------------- 1 | 3.159499363321345566e-02,9.869877579082642072e-01,0.000000000000000000e+00 2 | 2.115097840005998098e+00,-4.624396793368001912e-02,1.000000000000000000e+00 3 | 8.824897202429525800e-01,-7.575605515192823658e-02,0.000000000000000000e+00 4 | -5.514410395493309081e-02,-3.733245922211456125e-02,1.000000000000000000e+00 5 | 8.295450281029342898e-01,-5.393214930366995175e-01,1.000000000000000000e+00 6 | 2.112857076342865792e+00,6.620835334836001618e-01,1.000000000000000000e+00 7 | 5.696926997602634879e-01,3.374413575291368428e-01,0.000000000000000000e+00 8 | 9.521745361967547394e-01,-7.530747091382108405e-01,1.000000000000000000e+00 9 | -2.922114573667314308e-02,3.928733563262766237e-01,1.000000000000000000e+00 10 | 1.715795573379396366e+00,3.606945394211044098e-01,1.000000000000000000e+00 11 | -2.788301416383404119e-01,6.142053862138131537e-01,1.000000000000000000e+00 12 | 2.003445086685660126e+00,-3.091496039347518821e-01,1.000000000000000000e+00 13 | 1.500096159481413727e+00,-7.463637596324144141e-01,1.000000000000000000e+00 14 | 1.225408349269704544e+00,1.197930168674084639e+00,0.000000000000000000e+00 15 | 4.673081934172612084e-01,5.470319224500304056e-01,0.000000000000000000e+00 16 | -3.665322231763949445e-01,1.119716334184672979e+00,0.000000000000000000e+00 17 | 3.012445942883550942e-01,1.233156971330037432e+00,0.000000000000000000e+00 18 | 3.043074627037069546e-01,8.237393538028817686e-01,0.000000000000000000e+00 19 | -2.371249156395008328e-01,7.787603354698340308e-01,0.000000000000000000e+00 20 | 1.163398317807733617e+00,5.529023837343670644e-01,0.000000000000000000e+00 21 | -5.970241655451735685e-01,6.572360991187755630e-01,0.000000000000000000e+00 22 | 4.635673501248080974e-01,-1.951542983892050054e-01,1.000000000000000000e+00 23 | 6.845111142379667335e-01,7.528768522591495760e-01,0.000000000000000000e+00 24 | 7.051569889057123230e-01,-4.589244400760628118e-01,1.000000000000000000e+00 25 | -6.580500787381697858e-01,-1.294421121982363143e-01,0.000000000000000000e+00 26 | -7.466294632068579684e-01,-3.829632037287942214e-01,0.000000000000000000e+00 27 | 6.058522563968107288e-01,3.125284196699863459e-01,0.000000000000000000e+00 28 | 2.181371683049025290e+00,-2.291746927689475299e-02,1.000000000000000000e+00 29 | 1.919806334070562004e+00,1.724732889634024158e-01,1.000000000000000000e+00 30 | 1.483436402074378879e+00,-1.051702314984633846e-01,1.000000000000000000e+00 31 | 4.740472260478199584e-01,-1.457506719636281201e-01,1.000000000000000000e+00 32 | 1.056146046768832836e+00,-1.035702068049833224e+00,1.000000000000000000e+00 33 | 1.865007322962233038e+00,-1.107873734719251602e-02,1.000000000000000000e+00 34 | 4.194721021516975568e-01,-3.247810115072367054e-01,1.000000000000000000e+00 35 | 6.873257777127617096e-02,5.664846702876994433e-01,1.000000000000000000e+00 36 | -1.733243247632655637e-01,1.002151307685729575e+00,0.000000000000000000e+00 37 | 1.241242064812876911e-01,1.000628918576098814e+00,0.000000000000000000e+00 38 | 1.812114227881840844e-01,2.471774309096053668e-01,1.000000000000000000e+00 39 | -2.545155930677909240e-01,1.931727159301120933e-01,1.000000000000000000e+00 40 | 1.025806681391205011e+00,-6.257456623273742746e-01,1.000000000000000000e+00 41 | 1.520021431031716830e+00,-4.515581275373087289e-02,0.000000000000000000e+00 42 | 6.417403675063451107e-01,-3.936946837063957649e-01,1.000000000000000000e+00 43 | -8.761558871630454881e-01,4.656620251346510475e-02,0.000000000000000000e+00 44 | -1.069649973668143961e+00,1.366602473161631637e-01,0.000000000000000000e+00 45 | 1.026587654482872258e+00,3.778245769022746670e-01,0.000000000000000000e+00 46 | 9.313132543149978959e-01,1.385178411971548895e+00,0.000000000000000000e+00 47 | 6.768054363547377772e-01,1.571899312714103214e+00,0.000000000000000000e+00 48 | -3.688573309732531280e-01,7.288660141702617556e-01,0.000000000000000000e+00 49 | -1.024654954906715432e+00,1.619021463664266358e-01,0.000000000000000000e+00 50 | 7.745538478844521402e-01,1.537580320941234757e-01,0.000000000000000000e+00 51 | 1.404511600814796868e+00,-7.057005138314489945e-03,1.000000000000000000e+00 52 | -3.814717421672545461e-01,-2.348874665349006408e-01,1.000000000000000000e+00 53 | 7.215522446289361902e-01,4.472165750877070134e-01,0.000000000000000000e+00 54 | -5.134668595395711632e-01,6.786909545326080817e-01,0.000000000000000000e+00 55 | 3.211854615031241034e-01,2.866866685419984240e-01,0.000000000000000000e+00 56 | 1.953628037527059547e-01,1.608510651493313959e-01,1.000000000000000000e+00 57 | 5.282419616404990803e-01,9.830099315447119457e-01,0.000000000000000000e+00 58 | -2.216538968943560506e-01,2.516013870512852080e-01,0.000000000000000000e+00 59 | 2.233467635561762754e-01,1.322171826480582402e+00,0.000000000000000000e+00 60 | -1.070457181226829591e-01,5.617832625636306476e-01,1.000000000000000000e+00 61 | 6.365168516040098368e-01,7.544482523438968968e-01,0.000000000000000000e+00 62 | -3.722784784934399238e-01,9.929131660820307292e-01,0.000000000000000000e+00 63 | 2.071808326598170713e-01,-9.767142739891909731e-02,1.000000000000000000e+00 64 | 1.273314190904384913e-01,-3.796548967118948403e-01,1.000000000000000000e+00 65 | 7.143523082580421901e-01,-7.999416121460020124e-01,1.000000000000000000e+00 66 | 1.094878136347054998e+00,-3.684184482190744347e-01,1.000000000000000000e+00 67 | -1.481436228328241178e-01,9.615865686187115013e-01,0.000000000000000000e+00 68 | 1.586187998577996972e+00,-6.298451656162282752e-01,1.000000000000000000e+00 69 | 7.444455063252204408e-01,5.766137068632283258e-01,0.000000000000000000e+00 70 | 2.180110277730073598e+00,-6.997775077802520505e-01,1.000000000000000000e+00 71 | 2.457559354815964103e-01,8.496383011786972084e-01,0.000000000000000000e+00 72 | -9.500358136002062803e-01,9.036169893360138650e-01,0.000000000000000000e+00 73 | -8.823075833032376636e-01,7.249044196648242455e-02,0.000000000000000000e+00 74 | 2.022970787506752632e+00,1.232514823244950652e-01,1.000000000000000000e+00 75 | 2.145773210175075274e+00,4.629636173144290878e-01,1.000000000000000000e+00 76 | 3.553646839272793789e-01,-6.784798863681882342e-01,1.000000000000000000e+00 77 | 3.466502588474150715e-01,1.115706761193445029e+00,0.000000000000000000e+00 78 | 1.739237300610891879e+00,4.590035242014501304e-01,1.000000000000000000e+00 79 | 6.385646696350306684e-01,-4.471844341651154409e-01,1.000000000000000000e+00 80 | 1.287668701134548455e+00,-4.910366009324704795e-01,1.000000000000000000e+00 81 | -1.377260693484619047e-01,1.245326198712558785e+00,0.000000000000000000e+00 82 | -5.617530312161083117e-01,1.054860510060877887e+00,0.000000000000000000e+00 83 | 1.290037479098052442e+00,-2.069140475048650007e-01,1.000000000000000000e+00 84 | -8.753936535485004056e-01,5.054342299267167160e-01,0.000000000000000000e+00 85 | -9.285824919481816542e-01,-4.563199052393643873e-01,0.000000000000000000e+00 86 | 2.493632078646507155e-02,1.074795833868681938e-01,1.000000000000000000e+00 87 | 1.972558991834818531e-01,-6.801667981997078227e-02,1.000000000000000000e+00 88 | 7.334605649545697936e-01,2.816192880885117211e-01,0.000000000000000000e+00 89 | 1.682944338271429530e+00,-2.020423031727686392e-01,1.000000000000000000e+00 90 | 5.076412403964466469e-01,-1.173197933475253474e-01,1.000000000000000000e+00 91 | 1.667602174755152822e+00,-4.248566522717369676e-01,1.000000000000000000e+00 92 | -8.217228210436642311e-01,6.314106629162008488e-01,0.000000000000000000e+00 93 | 3.017090266430521028e-01,7.860353394551198303e-01,0.000000000000000000e+00 94 | 1.376715047058109320e+00,-8.091510741803735751e-01,1.000000000000000000e+00 95 | 1.170375508314319912e+00,5.984065269053864267e-01,0.000000000000000000e+00 96 | 1.699453094326453195e+00,5.877196698165860766e-01,1.000000000000000000e+00 97 | 2.186232335250059000e-01,-6.525211867631453000e-01,1.000000000000000000e+00 98 | 9.529142847496185897e-01,-4.197656395767486170e-01,1.000000000000000000e+00 99 | -1.318500344394381019e+00,4.231123496153353924e-01,0.000000000000000000e+00 100 | -1.296817644442520123e+00,1.841470902307968671e-01,0.000000000000000000e+00 101 | -------------------------------------------------------------------------------- /5. KNN/KNN/demo_data/2.concerticcir1.csv: -------------------------------------------------------------------------------- 1 | -3.828911738602102099e-01,-9.084004237811005300e-02,1.000000000000000000e+00 2 | -2.096229060118734444e-02,-4.778741558510644083e-01,1.000000000000000000e+00 3 | -3.961159621497807870e-01,-1.289426942412771115e+00,0.000000000000000000e+00 4 | -6.181301837811659095e-01,-6.383715022671060391e-02,1.000000000000000000e+00 5 | 7.034783759088518718e-01,-1.870383680999883058e-01,1.000000000000000000e+00 6 | -4.597046341500667932e-01,6.947746536502913406e-01,0.000000000000000000e+00 7 | -4.509168151319991047e-01,-7.157052357026995049e-01,0.000000000000000000e+00 8 | -4.556200447837268075e-01,-1.340601561295691191e-01,1.000000000000000000e+00 9 | -2.651390428962208112e-01,4.081287134881198542e-01,1.000000000000000000e+00 10 | -1.547464788798145197e-01,4.140697330504542473e-01,1.000000000000000000e+00 11 | 2.312059976302998643e-01,-5.327589929312029904e-01,1.000000000000000000e+00 12 | 1.562387538667342479e-01,-8.678087959146379982e-01,0.000000000000000000e+00 13 | 5.164754088213727723e-01,4.894099515623506758e-01,1.000000000000000000e+00 14 | 6.870700669548217565e-01,-2.334129271349616452e-02,1.000000000000000000e+00 15 | 5.475986850653906668e-01,-1.648237288163639236e-01,1.000000000000000000e+00 16 | -3.217957207127715158e-01,-8.055353563951547224e-01,0.000000000000000000e+00 17 | -1.074786391852546208e+00,-7.333620008863706019e-01,0.000000000000000000e+00 18 | 7.675845492733637254e-01,-4.349878312955712811e-01,0.000000000000000000e+00 19 | -4.747523436963354548e-01,-3.381318601057874407e-01,1.000000000000000000e+00 20 | 1.542065566257118103e-01,1.073060318223337140e+00,0.000000000000000000e+00 21 | 6.591669593400859561e-01,2.077363413668956715e-01,0.000000000000000000e+00 22 | -7.779500271637578290e-01,1.326554985671240805e-01,1.000000000000000000e+00 23 | 4.702545410708354745e-01,-3.122874753919116508e-01,1.000000000000000000e+00 24 | -4.246799088786083753e-02,2.655544606295164312e-01,1.000000000000000000e+00 25 | -7.240595430250984510e-01,4.880718549196249034e-01,0.000000000000000000e+00 26 | -3.696000549180210593e-01,-1.065140282112972958e+00,0.000000000000000000e+00 27 | 1.783332738249141514e-01,-4.971897241531270106e-01,1.000000000000000000e+00 28 | -9.392786432969637556e-01,-4.195163753548514785e-01,0.000000000000000000e+00 29 | 5.091415177797765645e-01,-7.097746675138559835e-01,0.000000000000000000e+00 30 | -5.569852006012616930e-02,-8.216260724131693172e-01,0.000000000000000000e+00 31 | -1.121457892534244438e-01,7.219704398744608564e-01,1.000000000000000000e+00 32 | 8.046392140975882068e-01,-1.522129552070076441e-01,1.000000000000000000e+00 33 | 8.261487280609236539e-02,-1.174902097578534588e-01,1.000000000000000000e+00 34 | 2.034954115001688379e-01,-3.739678935557311790e-01,1.000000000000000000e+00 35 | 1.386469331887233980e-01,-2.390564213390756754e-01,1.000000000000000000e+00 36 | 3.278530715455694744e-01,-1.007690373334440448e+00,0.000000000000000000e+00 37 | 8.894406123385016905e-01,-3.911762808785548273e-01,0.000000000000000000e+00 38 | -5.837947262909021218e-02,2.848703867476858331e-01,1.000000000000000000e+00 39 | -1.067365296106876027e+00,2.204005982162877131e-01,0.000000000000000000e+00 40 | -6.007134457729654820e-01,-6.954518933410470671e-01,0.000000000000000000e+00 41 | -3.972324037760179005e-02,-4.093605593635569750e-01,1.000000000000000000e+00 42 | 3.974208510485954249e-01,2.062116236212662712e-01,1.000000000000000000e+00 43 | -3.694115367189275689e-01,1.298110326829030048e-02,1.000000000000000000e+00 44 | 3.573702759174757215e-02,4.666622872439885605e-01,0.000000000000000000e+00 45 | -5.681499890870698177e-01,-4.128841892948301728e-01,1.000000000000000000e+00 46 | 4.104729914097019483e-01,-7.364086765512785071e-01,0.000000000000000000e+00 47 | 8.824970659226714087e-01,-6.900440415525347371e-01,0.000000000000000000e+00 48 | 6.579821735790389314e-02,-5.045839482894732830e-01,1.000000000000000000e+00 49 | -7.573722298764056227e-01,-7.240280057904840971e-02,0.000000000000000000e+00 50 | 1.831696614176975269e-01,8.722006644173714573e-02,1.000000000000000000e+00 51 | 6.724831385082246094e-01,-4.189266508845179704e-01,0.000000000000000000e+00 52 | 2.589872313936384396e-01,3.968864517685565252e-01,1.000000000000000000e+00 53 | -1.131298296892087940e+00,4.810614005977202345e-01,0.000000000000000000e+00 54 | 1.059284404233769017e+00,6.449028673879386719e-01,0.000000000000000000e+00 55 | 4.101966268999728826e-01,3.879019832912261601e-01,1.000000000000000000e+00 56 | 9.514202917293155259e-01,-4.089982645716697118e-02,0.000000000000000000e+00 57 | -6.049298779492366940e-01,4.395090642176294748e-01,0.000000000000000000e+00 58 | 2.331476157773189894e-01,-8.178571103935092790e-01,1.000000000000000000e+00 59 | 9.106733145141466812e-01,3.070207542307892279e-01,0.000000000000000000e+00 60 | -4.502647182093109657e-01,-3.724103905968392803e-02,1.000000000000000000e+00 61 | -8.139612106103979450e-01,-6.473395934969226051e-01,0.000000000000000000e+00 62 | -2.319133844618320450e-01,5.053399243940082108e-01,1.000000000000000000e+00 63 | -5.976098250012880087e-01,2.802316809234396966e-01,1.000000000000000000e+00 64 | 7.396016572034366243e-01,-8.427028053995542223e-01,0.000000000000000000e+00 65 | 5.729465935036953672e-01,-3.119892761550970284e-01,0.000000000000000000e+00 66 | 2.482113254768641419e-01,-5.478450903300359220e-01,1.000000000000000000e+00 67 | 5.212780193736283874e-01,9.410800532390148909e-01,0.000000000000000000e+00 68 | 3.397319842618129471e-01,1.060997846437403136e-01,1.000000000000000000e+00 69 | 1.053390357534016442e+00,-2.197592862029202482e-02,0.000000000000000000e+00 70 | 1.327465868041982633e-02,-6.337950167400366874e-01,1.000000000000000000e+00 71 | 2.422589022457533603e-01,4.903206374725526118e-01,1.000000000000000000e+00 72 | -8.926661173065930655e-01,6.345075979165555324e-01,0.000000000000000000e+00 73 | 1.672566036937978562e-01,2.354846161226166745e-01,1.000000000000000000e+00 74 | -5.611704670612876339e-02,3.883409921252401475e-01,1.000000000000000000e+00 75 | 8.469548600275456085e-01,8.143581098121059902e-01,0.000000000000000000e+00 76 | 2.997619526162534909e-01,-7.943030735271219833e-02,1.000000000000000000e+00 77 | -1.404762043460740517e-01,7.248603242634668042e-01,0.000000000000000000e+00 78 | -5.482024060525886311e-02,1.841732833343766862e-01,1.000000000000000000e+00 79 | -2.464388447432506180e-01,-4.328333677022815351e-01,1.000000000000000000e+00 80 | -2.346064540878696203e-01,6.409441977220393660e-01,0.000000000000000000e+00 81 | -1.131848931379264345e+00,-6.196494237218049816e-01,0.000000000000000000e+00 82 | -9.241382098445175552e-01,-4.530208919773014986e-01,0.000000000000000000e+00 83 | 2.225745046281891737e-01,7.705259659342518219e-01,0.000000000000000000e+00 84 | -6.945376523420367931e-01,5.301414731009287395e-01,0.000000000000000000e+00 85 | -1.036250899510139378e+00,7.733996472325201932e-01,0.000000000000000000e+00 86 | 5.188058511368854875e-01,3.015223208297168056e-01,1.000000000000000000e+00 87 | -7.742954098262425644e-01,2.553766931152208833e-02,0.000000000000000000e+00 88 | 7.146832644296318149e-01,5.686901478327923698e-01,0.000000000000000000e+00 89 | -3.387527378078334928e-01,4.682606327836119076e-01,1.000000000000000000e+00 90 | -3.474924425636272129e-01,1.344141761290389980e-01,1.000000000000000000e+00 91 | 1.129807963603577603e+00,4.281936260310230391e-02,0.000000000000000000e+00 92 | -3.830897937264843844e-01,7.911681228258917731e-01,0.000000000000000000e+00 93 | -7.425140597242434193e-02,2.184624982833010542e-01,1.000000000000000000e+00 94 | -4.494520248082683467e-01,-5.722265738641826860e-02,1.000000000000000000e+00 95 | 8.578328755550748141e-01,6.377888778176594720e-01,0.000000000000000000e+00 96 | -4.748620338912356020e-01,-2.249811220793074829e-01,1.000000000000000000e+00 97 | 1.262724332365476321e-01,8.697841238487512561e-01,0.000000000000000000e+00 98 | -6.473645756890735736e-01,-3.634243739531914930e-01,1.000000000000000000e+00 99 | 4.744045874153203224e-01,1.011015845865479656e+00,0.000000000000000000e+00 100 | -3.856577212802564381e-01,-8.103118329773687512e-01,0.000000000000000000e+00 101 | -------------------------------------------------------------------------------- /5. KNN/KNN/demo_data/4.linearsep.csv: -------------------------------------------------------------------------------- 1 | -1.774965779898558527e-01,9.304962660386675299e-01,1.000000000000000000e+00 2 | 1.977424058719914779e+00,1.766155293485646371e+00,0.000000000000000000e+00 3 | 1.800023793920340509e+00,1.700342797185373511e+00,0.000000000000000000e+00 4 | -7.708368567582637443e-01,2.359163483274678619e+00,1.000000000000000000e+00 5 | -3.080090137780033821e-01,1.594063156240643098e+00,1.000000000000000000e+00 6 | 6.147214057742914628e-01,2.434898235370948072e+00,1.000000000000000000e+00 7 | 1.090943101035112273e+00,2.216634021089654016e+00,0.000000000000000000e+00 8 | -8.348895413310100100e-01,2.358688750248903787e+00,1.000000000000000000e+00 9 | 2.479464994607870842e+00,1.334189672185075004e+00,0.000000000000000000e+00 10 | 1.199265974174295257e+00,1.826813922878029350e+00,1.000000000000000000e+00 11 | 2.185061835186317136e+00,8.226874969283189953e-01,0.000000000000000000e+00 12 | 1.684232026065965782e+00,1.041131097355358026e+00,0.000000000000000000e+00 13 | 1.146211348679538666e+00,2.070485267927013595e+00,0.000000000000000000e+00 14 | 1.355969451792044644e+00,5.680249816835929444e-01,0.000000000000000000e+00 15 | 1.385207480422569137e+00,1.826072384846579855e+00,0.000000000000000000e+00 16 | 1.867292166552691368e+00,1.186926990211513822e+00,0.000000000000000000e+00 17 | 3.122737560105236510e-01,2.246053532298049937e+00,1.000000000000000000e+00 18 | -8.183483649778811042e-02,1.700655112374142020e+00,1.000000000000000000e+00 19 | 9.048447162452653014e-01,2.606830160734105561e+00,1.000000000000000000e+00 20 | -4.358608976285560654e-01,2.015141400218765977e+00,1.000000000000000000e+00 21 | 8.144119636882038993e-01,2.135467843821274414e+00,1.000000000000000000e+00 22 | 3.108743116165684661e+00,2.267865043649954337e+00,0.000000000000000000e+00 23 | -2.557421694500754406e-01,1.712811456067370841e+00,1.000000000000000000e+00 24 | 1.886630270530996523e+00,2.720895134840621843e+00,0.000000000000000000e+00 25 | 2.295035469724568955e+00,3.892677587182644672e+00,0.000000000000000000e+00 26 | -1.141562624026013495e-01,8.559335743499960625e-01,1.000000000000000000e+00 27 | 1.697035367840272091e+00,3.477177988234282591e+00,0.000000000000000000e+00 28 | 1.838557751539753760e+00,9.266721259907292341e-01,0.000000000000000000e+00 29 | 1.602988071656992641e+00,1.301843598872431951e+00,0.000000000000000000e+00 30 | 1.138032150157472611e+00,2.829550071364288044e+00,1.000000000000000000e+00 31 | 5.700273793343100248e-01,1.822024689866410085e+00,1.000000000000000000e+00 32 | 2.513017189624151548e-01,1.322250481643853837e+00,1.000000000000000000e+00 33 | -3.983307826628607051e-01,1.984344997008685940e+00,1.000000000000000000e+00 34 | 1.629132603977066163e+00,8.816818237799028957e-01,0.000000000000000000e+00 35 | 3.105035853801514811e+00,1.740006329741113689e+00,0.000000000000000000e+00 36 | -5.668735947146341658e-03,1.120390406582786991e+00,1.000000000000000000e+00 37 | 1.368665571630571565e+00,2.139644376435396289e+00,0.000000000000000000e+00 38 | 2.698399612481068299e+00,3.549323823792247090e+00,0.000000000000000000e+00 39 | 2.001708378027932334e+00,1.098623139012122607e+00,0.000000000000000000e+00 40 | 2.436277083831795309e+00,1.437694756271542307e+00,0.000000000000000000e+00 41 | -3.099693757090293822e-01,9.125644420984648786e-01,1.000000000000000000e+00 42 | 8.528147847486300392e-02,1.722860964695664965e+00,1.000000000000000000e+00 43 | 2.062358034643298588e+00,1.603515287454766902e+00,0.000000000000000000e+00 44 | 1.610269843336894713e+00,2.068993077936323921e+00,0.000000000000000000e+00 45 | 1.398759141001534534e+00,6.929503354994610564e-01,1.000000000000000000e+00 46 | 1.684171952121574778e+00,1.054990758030300402e+00,0.000000000000000000e+00 47 | 6.032636952024524879e-01,2.186250564240889371e+00,1.000000000000000000e+00 48 | -8.009040540807352837e-01,1.898739987887355429e+00,1.000000000000000000e+00 49 | 2.286229055698735024e+00,2.004851988947004671e+00,0.000000000000000000e+00 50 | -1.081077375616385616e+00,2.775077844910318170e+00,1.000000000000000000e+00 51 | 6.731464992893574362e-01,1.083744532546206507e+00,1.000000000000000000e+00 52 | 2.969705764781013890e+00,2.123229129246612779e+00,0.000000000000000000e+00 53 | 6.795066838796897102e-01,2.098642739513909117e+00,1.000000000000000000e+00 54 | -4.478117660940801326e-01,3.184203720390454961e+00,1.000000000000000000e+00 55 | -5.003385420029125008e-01,2.021055306383067851e+00,1.000000000000000000e+00 56 | 1.853071177060094721e+00,3.666124956341999308e+00,0.000000000000000000e+00 57 | 1.721864236857777231e+00,1.780558741729883376e+00,0.000000000000000000e+00 58 | 2.250334831878852526e+00,3.121431119277734201e+00,0.000000000000000000e+00 59 | 3.135690796092169830e-01,1.351279486529370910e+00,1.000000000000000000e+00 60 | -2.841069052814206852e-01,1.857273044804755191e+00,1.000000000000000000e+00 61 | 2.129156564328551049e+00,2.584631266530066807e+00,0.000000000000000000e+00 62 | 1.576422703102946521e+00,2.019872822311515215e+00,0.000000000000000000e+00 63 | -1.078195491779146087e+00,1.401474050532345306e+00,1.000000000000000000e+00 64 | 1.197681188039566580e+00,2.402490745788781190e+00,0.000000000000000000e+00 65 | 1.376901121367063885e+00,1.149858415798459266e+00,0.000000000000000000e+00 66 | -1.660064884699084864e+00,1.463134737166496002e+00,1.000000000000000000e+00 67 | 1.243900114922203759e+00,1.460046281048402061e+00,0.000000000000000000e+00 68 | 1.879223047046559625e+00,1.722623141704533234e+00,0.000000000000000000e+00 69 | 2.908507911078423103e+00,2.941591450737263358e+00,0.000000000000000000e+00 70 | -4.812261291629479354e-01,1.791437619908470502e+00,1.000000000000000000e+00 71 | 2.437430404747939150e+00,1.345353314595293170e+00,0.000000000000000000e+00 72 | 2.565798740945202105e+00,9.933435817717286564e-01,0.000000000000000000e+00 73 | 2.448992408843662094e+00,2.490727267490959740e+00,0.000000000000000000e+00 74 | 4.603424688115833607e-01,6.840261153626066015e-01,1.000000000000000000e+00 75 | -3.906826803657038605e-01,2.132233005519266200e+00,1.000000000000000000e+00 76 | -1.266765944159567558e+00,1.156063813239409654e+00,1.000000000000000000e+00 77 | 1.418826938851164510e+00,2.571545267687625369e+00,0.000000000000000000e+00 78 | -5.676043617011623521e-01,9.901022939191341798e-01,1.000000000000000000e+00 79 | -1.801737447070235199e+00,1.231491323532391657e+00,1.000000000000000000e+00 80 | 1.803590606052267731e-01,1.255877974195551028e+00,1.000000000000000000e+00 81 | 2.852717658438677972e+00,1.845205605055966869e+00,0.000000000000000000e+00 82 | 1.845887234057941306e+00,1.150837334162890802e+00,0.000000000000000000e+00 83 | 2.233285696103223028e+00,3.152813902136283097e+00,0.000000000000000000e+00 84 | -5.501804398209573232e-01,1.081691471630426893e+00,1.000000000000000000e+00 85 | -7.908902086462197278e-01,1.650855213986880621e+00,1.000000000000000000e+00 86 | -1.319932910875936116e-01,1.940077956506024215e+00,1.000000000000000000e+00 87 | 7.025725688316544204e-01,1.357012961600498446e+00,0.000000000000000000e+00 88 | 2.767215468587310712e-01,2.672986681801555520e+00,1.000000000000000000e+00 89 | 6.102158686229843809e-01,2.165148599216429215e+00,1.000000000000000000e+00 90 | -5.300036754118879756e-01,2.019431636896686921e+00,1.000000000000000000e+00 91 | 1.837278877763967477e+00,2.111012897719438008e+00,0.000000000000000000e+00 92 | 2.841601916945832862e-01,2.644929637261184574e+00,1.000000000000000000e+00 93 | 1.896883789441271784e+00,2.260446930472400418e+00,0.000000000000000000e+00 94 | 2.068136134818725047e+00,2.610166904605157434e+00,0.000000000000000000e+00 95 | -1.722741267563606682e+00,1.279076521554840085e+00,1.000000000000000000e+00 96 | 2.632381606575672883e+00,1.271305076028492298e+00,0.000000000000000000e+00 97 | -4.025573878955279739e-02,1.782708097172356787e+00,1.000000000000000000e+00 98 | -7.874531842525254177e-01,1.400356884878678709e+00,1.000000000000000000e+00 99 | 2.702441156473601502e+00,1.587443580131801202e+00,0.000000000000000000e+00 100 | 1.290969301992858087e+00,2.751936730055132507e+00,1.000000000000000000e+00 101 | -------------------------------------------------------------------------------- /5. KNN/KNN/demo_data/5.outlier.csv: -------------------------------------------------------------------------------- 1 | -17.89699968,7.662423364,0 2 | -26.34316127,-3.055257103,0 3 | -19.05977104,-8.531837891,0 4 | -16.38389839,-2.352666988,0 5 | -12.92654098,9.074994068,0 6 | -22.3292329,-13.5041211,0 7 | -22.94706023,-8.938505918,0 8 | -27.21057128,13.78744035,0 9 | -22.93463289,-3.877214061,0 10 | -16.87167568,-5.22941598,0 11 | -25.36195513,10.05857818,0 12 | -13.82646731,7.037792566,0 13 | -25.08553911,-8.801652564,0 14 | -24.55943487,17.73492751,0 15 | -13.06763009,9.136323638,0 16 | -13.12096495,-2.850256307,0 17 | -18.93845338,15.26930987,0 18 | -19.94989615,-11.43460283,0 19 | -15.716953,-9.704609309,0 20 | -12.4336491,-4.486031991,0 21 | -22.64705977,-16.0394794,0 22 | -24.31204786,-4.995672963,0 23 | -11.5435892,1.303350333,0 24 | -13.81705862,7.997879452,0 25 | -23.95473638,-12.45920185,0 26 | -15.92823299,-12.8642684,0 27 | -18.15393879,1.435093385,0 28 | -26.98917693,-19.4663251,0 29 | -13.47914769,-4.747044566,0 30 | -13.81179106,-5.771048155,0 31 | -20.74620917,12.83646498,0 32 | -15.28616165,-0.639084118,0 33 | -26.09799517,-7.296057937,0 34 | -21.67614664,11.12130927,0 35 | -19.59014094,12.3127372,0 36 | -15.36711322,-6.25418393,0 37 | -29.91736288,17.76901805,0 38 | -26.51996236,-16.14483855,0 39 | -27.39725141,-13.37299416,0 40 | -14.46296347,11.84169552,0 41 | -22.55347884,0.523070674,0 42 | -18.38010787,10.21382132,0 43 | -14.03370938,-1.234942095,0 44 | -17.48046102,3.869379826,0 45 | -26.04473727,18.49551618,0 46 | -27.88774888,14.11613718,0 47 | -17.17743629,14.87267322,0 48 | -21.57379404,-2.348877314,0 49 | -28.38502728,16.45434066,0 50 | -26.95051881,16.28570067,0 51 | -24.52284849,-0.358178171,0 52 | -13.58206343,-5.726144614,0 53 | -25.72619989,-14.19631779,0 54 | -18.13719997,-3.891586093,0 55 | -27.18925006,0.748386782,0 56 | -20.71362246,13.01352422,0 57 | -29.07643208,-14.03529434,0 58 | -17.45388862,-11.82889274,0 59 | -23.42731964,-13.986384,0 60 | -20.08487496,10.64968446,0 61 | -28.73759416,16.77933073,0 62 | -29.41883891,1.15988626,0 63 | -29.43334903,2.121421809,0 64 | -24.89749056,3.458216286,0 65 | -23.16448463,-10.18659319,0 66 | -28.4532272,15.26853719,0 67 | -24.83701357,14.33328437,0 68 | -11.88138374,-7.708697611,0 69 | -25.20703354,-1.180193881,0 70 | -25.73300382,17.20276565,0 71 | -25.05834095,6.487831949,0 72 | -19.42258006,-12.85592225,0 73 | -16.22575257,10.94153927,0 74 | -18.95370871,2.350394946,0 75 | -20.44268781,6.339728517,0 76 | -28.30860576,-15.57031332,0 77 | -25.15139517,-10.05015335,0 78 | -12.80200782,-6.019169785,0 79 | -13.14707729,-5.795552581,0 80 | -11.19009665,0.79789386,0 81 | -27.5174979,17.30911417,0 82 | -16.00886569,-5.620705806,0 83 | -20.44765562,-1.087928125,0 84 | -24.56989203,0.922383106,0 85 | -17.39369289,10.56265995,0 86 | -21.28073162,-16.49803056,0 87 | -29.15309217,7.701186301,0 88 | -17.95514268,-3.121432182,0 89 | -26.9764547,-3.781368454,0 90 | -28.40081139,0.154649315,0 91 | -21.83345195,18.20881065,0 92 | -20.74474318,6.510936517,0 93 | -22.20829824,15.88640131,0 94 | -29.61441548,9.785120217,0 95 | -28.08196046,-3.789548364,0 96 | -26.94325322,8.956718347,0 97 | -20.56322663,16.99466441,0 98 | -15.87940807,12.78141885,0 99 | -20.31212191,-13.23400957,0 100 | -22.70586804,7.180517692,0 101 | -20.95264773,-17.21736496,0 102 | -29.16413704,16.23881698,0 103 | -24.1923423,-3.723487527,0 104 | -20.8519227,-11.44423623,0 105 | -17.16822789,-5.637519511,0 106 | -10.70782169,-2.362574248,0 107 | -18.55028645,-11.83109592,0 108 | -25.80818462,-11.84178471,0 109 | -22.07770922,-0.448478526,0 110 | -11.81873518,-7.561107028,0 111 | -29.67707932,12.15871191,0 112 | -22.99002973,-18.53514689,0 113 | -19.93559427,-1.447901856,0 114 | -18.96118833,-12.90010095,0 115 | -18.89044601,-3.568576405,0 116 | -25.40822915,3.881649943,0 117 | -28.5127886,18.98256222,0 118 | -12.96951488,-2.190443587,0 119 | -16.09103768,0.676788932,0 120 | -24.0472551,-18.81612399,0 121 | -26.4636877,-6.318532747,0 122 | -11.62985901,-2.704322504,0 123 | -28.03447461,-9.014986275,0 124 | -18.35021924,7.14359736,0 125 | -20.31555356,8.098712802,0 126 | -20.97173339,10.26148889,0 127 | -10.66289786,-1.268320294,0 128 | -20.2684402,14.84924442,0 129 | -28.66251974,3.273261719,0 130 | -27.17849607,3.656563633,0 131 | -29.3179628,-10.51172224,0 132 | -15.49286497,4.060845259,0 133 | -16.2056536,-10.80698294,0 134 | -27.61369871,14.42595231,0 135 | -20.8479618,9.161909934,0 136 | -20.7595996,16.38474914,0 137 | -24.61212431,-11.57827489,0 138 | -23.62274933,7.823369512,0 139 | -26.6333087,6.546746983,0 140 | -20.37062674,0.53073899,0 141 | -18.19115681,-7.599040197,0 142 | -21.57779371,-8.818989157,0 143 | -14.51657384,8.851786811,0 144 | -21.23566826,-5.601186461,0 145 | -19.89660596,14.05666871,0 146 | -21.26845896,2.685014859,0 147 | -21.68036118,1.173585373,0 148 | -28.20165036,15.97861495,0 149 | -25.1614933,4.432804449,0 150 | -23.14777273,16.41587125,0 151 | -29.10973139,-16.94706858,0 152 | -29.91890597,-15.18514505,0 153 | -26.76696287,0.062403201,0 154 | -10.22188838,-0.999543478,0 155 | -13.90936201,10.36275341,0 156 | -23.68943871,17.25769052,0 157 | -23.67514929,10.96152806,0 158 | -14.96618693,6.839075368,0 159 | -20.50503595,-13.19031565,0 160 | -16.50290236,-13.02291888,0 161 | -23.79082083,7.99314531,0 162 | -29.11943167,3.103273853,0 163 | -20.14639268,11.35438803,0 164 | -27.55842378,-1.54870152,0 165 | -11.55115804,-7.200291424,0 166 | -21.63121957,10.63684742,0 167 | -29.1003888,18.28587403,0 168 | -18.68381015,16.30286223,0 169 | -13.04088927,-0.751941005,0 170 | -27.64942077,-17.05447673,0 171 | -22.01785793,-17.33773082,0 172 | -14.97681894,-9.975829124,0 173 | -22.21148574,12.83798908,0 174 | -23.47763984,3.235708703,0 175 | -27.23359591,-16.86153575,0 176 | -25.71608741,-3.295693988,0 177 | -18.20110613,6.53220704,0 178 | -17.71578008,-13.97387854,0 179 | -20.98240202,-7.387508967,0 180 | -22.23958998,-1.99301132,0 181 | -27.96798826,-8.588134202,0 182 | -20.74672255,-4.955817253,0 183 | -21.50919299,15.0868875,0 184 | -21.50460411,-4.759834847,0 185 | -29.96927094,-1.311229899,0 186 | -29.79646949,-1.444304241,0 187 | -11.97795502,-3.345673292,0 188 | -20.80032058,2.68438112,0 189 | -13.2929298,9.507711791,0 190 | -29.88541628,-8.197272189,0 191 | -28.57166513,-1.982675551,0 192 | -15.60538551,11.21688808,0 193 | -16.12978415,-4.192236563,0 194 | -25.16026446,19.35277494,0 195 | -27.46006882,-9.474838094,0 196 | -16.54596187,-8.130998144,0 197 | -18.65098142,-4.656082889,0 198 | -14.92552837,-11.23783904,0 199 | -29.18948294,9.384009289,0 200 | -27.89856471,18.12754402,0 201 | -20.74411234,-16.87944567,0 202 | -27.67468863,-1.926393346,0 203 | -21.44505573,9.440974324,0 204 | -15.28685472,8.75516164,0 205 | -21.80864116,4.036110025,0 206 | -26.39064038,-4.196469082,0 207 | -21.20861285,-4.708726858,0 208 | -26.13185976,-15.33637376,0 209 | -25.56945232,-1.217663567,0 210 | -12.72549503,7.05218311,0 211 | -15.90781031,10.22922344,0 212 | -17.29155949,-7.200132627,0 213 | -15.37286258,-9.587449875,0 214 | -21.03821497,6.057027679,0 215 | -24.52337208,-7.283650638,0 216 | -18.49885372,3.948053804,0 217 | -28.35929511,12.96326578,0 218 | -14.16826104,-1.890729116,0 219 | -13.81649608,-6.292310983,0 220 | -12.11953203,-4.49406313,0 221 | -21.55318863,5.558179949,0 222 | -28.71530703,10.38369608,0 223 | -29.28483173,-10.61779437,0 224 | -15.50697941,9.775127405,0 225 | -26.11507562,5.191144647,0 226 | -22.8147503,5.934072655,0 227 | -24.0668312,18.54252421,0 228 | -17.64995219,-1.477838508,0 229 | -21.66124211,2.863187663,0 230 | -19.37687236,-5.166333567,0 231 | -12.19715609,-3.549981903,0 232 | -26.41801717,11.6197598,0 233 | -22.04126599,16.37426372,0 234 | -23.80318842,-3.387075204,0 235 | -13.0982723,-7.144716031,0 236 | -29.05168618,9.573349895,0 237 | -25.59250827,-1.334901535,0 238 | -26.02486333,-0.997194171,0 239 | -20.02989833,-11.14335008,0 240 | -28.36749641,7.380734556,0 241 | -12.84963868,1.266857323,0 242 | -26.22682281,-1.400022316,0 243 | -28.82526078,11.9008142,0 244 | -22.44115578,-13.6541196,0 245 | -19.78392204,12.43919821,0 246 | -23.9470664,-8.059977332,0 247 | -25.08660619,-10.47513329,0 248 | -21.89696026,-1.356655711,0 249 | -26.31717042,-8.080847355,0 250 | -28.63878812,15.78165586,0 251 | -12.63838912,-8.786279328,0 252 | -17.59287725,-8.513964536,0 253 | -28.93939451,4.00986694,0 254 | -18.5168328,-7.268116076,0 255 | -22.71214297,13.1171305,0 256 | -22.78020953,11.67146257,0 257 | -26.72086199,-2.993695218,0 258 | -27.3976919,-1.727123049,0 259 | -25.05779139,0.168130254,0 260 | -27.42652111,-2.113120454,0 261 | -25.55848192,8.996911502,0 262 | -29.90500161,3.42481052,0 263 | -24.56535237,5.288490276,0 264 | -24.16738921,2.790691247,0 265 | -10.47005992,1.163426871,0 266 | -28.96450825,6.080960838,0 267 | -24.34450778,10.26815204,0 268 | -17.86930425,7.307719444,0 269 | -18.71694875,-6.240050261,0 270 | -22.70544396,-15.78842072,0 271 | -20.18201683,16.08699984,0 272 | -25.74445079,-6.448882224,0 273 | -18.22911799,7.568726852,0 274 | -19.08994625,-0.440708965,0 275 | -25.47609831,18.62599229,0 276 | -21.1870357,-0.513333751,0 277 | 23.3584138,18.85120255,1 278 | 19.87009248,-0.384654313,1 279 | 23.91965635,-5.334502323,1 280 | 11.28786847,-1.059607408,1 281 | 20.17698881,3.639930431,1 282 | 19.80855613,4.46344934,1 283 | 26.88444025,0.429848133,1 284 | 26.96334457,-5.171697979,1 285 | 25.07852382,-2.511256989,1 286 | 23.1462138,12.14231566,1 287 | 20.97683683,-15.3151155,1 288 | 16.84757722,-7.612306918,1 289 | 23.34660278,-11.36311475,1 290 | 17.74741366,7.341523439,1 291 | 24.08921253,-12.500221,1 292 | 22.61589386,-7.654934061,1 293 | 26.70583481,-3.222459878,1 294 | 29.95719452,4.250353428,1 295 | 19.19046875,16.11414634,1 296 | 23.31705633,-18.59983208,1 297 | 17.20276385,-3.234877073,1 298 | 23.5245305,3.034732748,1 299 | 28.10364182,-17.25240795,1 300 | 19.69805721,-0.308810519,1 301 | 19.41700417,5.529839916,1 302 | 13.29483798,3.05906725,1 303 | 29.6530044,5.124525583,1 304 | 23.45930674,-13.17071399,1 305 | 15.41883939,9.556574202,1 306 | 29.43417687,-9.537602594,1 307 | 25.29657986,-18.09023147,1 308 | 20.08430336,13.46617475,1 309 | 22.9380701,-12.04614356,1 310 | 28.71395668,1.796028103,1 311 | 15.46913883,-0.645761196,1 312 | 25.26639495,4.987646695,1 313 | 13.33865239,-6.71140036,1 314 | 10.46388572,-0.370607644,1 315 | 26.12252967,19.24869032,1 316 | 22.01623287,17.25139733,1 317 | 28.91902649,10.33215025,1 318 | 27.98211585,14.6991654,1 319 | 12.30235096,8.06288248,1 320 | 12.95372256,2.861495077,1 321 | 17.38054383,9.796346865,1 322 | 20.85786006,-5.163452284,1 323 | 15.50419728,-8.492353045,1 324 | 16.8496626,-14.24786759,1 325 | 16.51292147,-3.931989657,1 326 | 28.51139493,-8.950585632,1 327 | 19.51723622,2.072557391,1 328 | 28.49461869,16.32184772,1 329 | 21.76984109,-8.760435667,1 330 | 26.13604119,-8.497749175,1 331 | 19.56144441,-3.084539638,1 332 | 26.62277138,-12.27694052,1 333 | 25.81229789,8.332501325,1 334 | 11.57079044,-5.200048398,1 335 | 24.26118974,-7.59270054,1 336 | 16.42613397,9.328213396,1 337 | 17.76771036,1.110979849,1 338 | 29.16958862,8.939418004,1 339 | 14.00384571,8.806363981,1 340 | 22.14977969,-7.972815275,1 341 | 29.4444783,5.204439893,1 342 | 16.17681426,-6.127661257,1 343 | 17.20494856,8.331309099,1 344 | 16.08059838,3.412527551,1 345 | 21.58835047,-11.31814591,1 346 | 23.73375971,-13.69265428,1 347 | 15.24231788,-12.02574558,1 348 | 13.24674597,-3.031811896,1 349 | 25.02348922,0.34778722,1 350 | 16.6253824,-10.28781632,1 351 | 18.73818028,-14.28469933,1 352 | 29.91716781,12.61487724,1 353 | 25.08216428,-1.532023488,1 354 | 27.67815119,-8.246082763,1 355 | 19.64512083,12.81311171,1 356 | 23.72627583,-15.77792774,1 357 | 22.94928302,2.282344762,1 358 | 16.74055741,14.21450886,1 359 | 22.68576694,1.396695865,1 360 | 14.13780025,1.9991762,1 361 | 23.37641109,-11.90518061,1 362 | 17.79858045,-3.141444488,1 363 | 21.62269484,-13.09116381,1 364 | 27.29460118,4.480138031,1 365 | 25.02617267,-2.709095775,1 366 | 10.82092529,-2.884167709,1 367 | 12.51561873,-1.261622172,1 368 | 19.69822518,13.03093526,1 369 | 23.08301274,-5.26433778,1 370 | 13.38553867,6.414102681,1 371 | 23.73208258,-1.159233157,1 372 | 15.27280391,-11.41662184,1 373 | 12.00043309,-5.009251876,1 374 | 22.76013035,8.458135459,1 375 | 20.99294219,13.95614813,1 376 | 22.82883388,-15.24260374,1 377 | 23.53556915,1.246979236,1 378 | 27.55773003,-5.682905219,1 379 | 20.98004825,-7.887688381,1 380 | 22.56369949,2.256169349,1 381 | 24.20686064,3.759699219,1 382 | 15.53855744,-3.280604964,1 383 | 22.85723625,2.031207648,1 384 | 16.40423117,1.565701078,1 385 | 24.36471882,-5.187367269,1 386 | 27.76883179,-8.894006909,1 387 | 29.09371523,-7.489333827,1 388 | 27.48937273,-9.705678507,1 389 | 13.59070815,-9.061394929,1 390 | 26.99617284,12.46424977,1 391 | 14.61394855,4.056604442,1 392 | 18.90651357,-5.36478622,1 393 | 15.50187869,-6.42386116,1 394 | 28.76739091,8.54431238,1 395 | 27.61458005,-10.77948707,1 396 | 13.23740961,-2.52108788,1 397 | 22.45130705,-13.90882116,1 398 | 27.95245034,-15.97373213,1 399 | 19.7178727,-6.532292131,1 400 | 22.88495664,12.07385944,1 401 | 20.43341699,6.878308388,1 402 | 20.47938956,5.573602903,1 403 | 20.69258834,-0.448592538,1 404 | 24.31101065,18.40932869,1 405 | 24.78911077,9.889261161,1 406 | 27.6002251,-3.236624309,1 407 | 22.80555673,5.826585661,1 408 | 24.10332177,11.81251168,1 409 | 12.78835891,1.655634749,1 410 | 22.32865311,-5.60418014,1 411 | 24.19171315,16.01277609,1 412 | 28.29915365,10.87139154,1 413 | 28.38474251,14.76834452,1 414 | 12.20130924,-0.55129172,1 415 | 16.5203154,-7.280752028,1 416 | 20.12801963,16.13229446,1 417 | 26.701384,1.097691324,1 418 | 23.44393921,-15.73744945,1 419 | 19.93771446,-14.56677271,1 420 | 11.56771784,0.077054348,1 421 | 24.92173092,-10.37701012,1 422 | 19.78770008,-5.617462281,1 423 | 22.06716747,13.51960933,1 424 | 26.90053514,9.439508528,1 425 | 16.58332072,2.997398976,1 426 | 15.17277742,-8.261223371,1 427 | 18.36507445,-12.16772446,1 428 | 17.62209716,9.90230353,1 429 | 20.14196591,-7.116145821,1 430 | 19.90740442,7.587890568,1 431 | 26.48500464,-16.26132385,1 432 | 13.58233977,-1.235225688,1 433 | 12.40676727,8.713351505,1 434 | 29.2642687,5.414198463,1 435 | 26.44045123,2.189128855,1 436 | 12.95138484,5.995264676,1 437 | 28.96158385,-0.945817308,1 438 | 15.66074541,9.224224705,1 439 | 11.84548646,0.658200522,1 440 | 16.89539338,-1.436764543,1 441 | 21.76744054,-3.765256266,1 442 | 29.16738827,2.672672387,1 443 | 25.898167,-17.09132237,1 444 | 23.2682307,-17.30693328,1 445 | 26.14273238,-18.26037088,1 446 | 16.86188347,13.53220347,1 447 | 12.22441109,-7.389162296,1 448 | 19.2392683,-5.487111553,1 449 | 19.14384325,4.7140369,1 450 | 16.00196281,-2.548344855,1 451 | 22.36947205,-2.836871008,1 452 | 18.27858531,1.99457033,1 453 | 27.61512484,1.876745284,1 454 | 23.14413485,-10.16385907,1 455 | 22.85647538,11.11366023,1 456 | 13.90442666,6.329950624,1 457 | 28.31177555,18.15580691,1 458 | 27.37206547,10.46321374,1 459 | 26.12280514,-0.913523483,1 460 | 16.40223164,-8.66826575,1 461 | 20.07904201,-5.122405308,1 462 | 19.78272956,-15.57672282,1 463 | 24.42565742,-13.15238863,1 464 | 19.41952444,15.67499391,1 465 | 22.53033693,1.751790416,1 466 | 29.85827526,-16.50222883,1 467 | 20.43998226,-15.62781894,1 468 | 24.58800903,4.41283884,1 469 | 23.38370632,11.05093104,1 470 | 27.4518154,13.25564763,1 471 | 15.68211964,-13.88577545,1 472 | 28.84682193,-10.36907358,1 473 | 10.49960461,3.477561251,1 474 | 23.50448781,-7.820704217,1 475 | 17.60181117,11.84936741,1 476 | 22.94213063,15.53904424,1 477 | 21.80198821,13.40144624,1 478 | 15.05234226,10.6766094,1 479 | 20.11748782,-16.47991797,1 480 | 14.37634153,-11.92874646,1 481 | 29.26644876,3.37253566,1 482 | 20.56042404,0.339529546,1 483 | 20.80778621,6.526238502,1 484 | 28.13977188,2.211425758,1 485 | 14.87029868,10.91044583,1 486 | 15.31944686,-7.203025221,1 487 | 24.02157186,-1.725985924,1 488 | 25.0379312,1.462853694,1 489 | 24.48382288,-7.550518559,1 490 | 27.40689592,13.98290297,1 491 | 20.32043664,-15.89210748,1 492 | 17.25563969,-5.069542055,1 493 | 18.50475856,2.087203202,1 494 | 16.40288799,9.087016049,1 495 | 19.43971136,-2.866645651,1 496 | 19.82960029,-1.721380145,1 497 | 20.48968851,-3.028396177,1 498 | 19.35852517,6.111753138,1 499 | 27.86357228,11.22970117,1 500 | 22.94739247,-14.28394425,1 501 | 23.18184086,8.318889424,1 502 | 19.8930629,-6.603708956,1 503 | 19.84039387,-6.695622829,1 504 | 29.30907039,-19.11343645,1 505 | 22.15163937,10.7551356,1 506 | 19.32081884,1.74184182,1 507 | 24.14250815,-7.034046801,1 508 | 26.8248377,-18.47845933,1 509 | 18.12982926,4.389533483,1 510 | 24.4489259,-1.266701657,1 511 | 28.36410894,-14.37870928,1 512 | 28.97866142,-6.102920821,1 513 | 21.62161667,10.50165425,1 514 | 25.86991795,8.710407573,1 515 | 26.98733572,-0.252396612,1 516 | 17.47284776,-8.048914625,1 517 | 13.35962221,9.500463812,1 518 | 11.84726735,5.917279017,1 519 | 21.10653311,6.85633937,1 520 | 20.53723971,13.39819559,1 521 | 12.10112991,4.596402071,1 522 | 22.74368741,-4.662048542,1 523 | 27.27261099,-19.32119878,1 524 | 22.01698223,15.66307899,1 525 | 23.11359122,9.816064757,1 526 | 17.77879582,-4.078872428,1 527 | 14.80574752,-11.11038669,1 528 | 25.35316279,2.009812717,1 529 | 29.95665198,8.143228311,1 530 | 28.4096825,-0.625887707,1 531 | 17.68975065,12.59725366,1 532 | 27.44707757,0.450179811,1 533 | 26.19028463,-7.707212284,1 534 | 14.54377687,-10.8461246,1 535 | 17.02550536,6.319359664,1 536 | 25.51383954,19.26821331,1 537 | 28.27949849,-3.111049745,1 538 | 22.29935155,1.989971252,1 539 | 22.33431967,12.63446461,1 540 | 11.39104797,2.340781987,1 541 | 16.15075306,-11.5319194,1 542 | 12.29097626,-0.418386878,1 543 | 28.85958685,6.250342847,1 544 | 28.17668028,-5.232856286,1 545 | 19.26222415,6.416690868,1 546 | 21.04470006,7.381140485,1 547 | 11.71619961,6.998313408,1 548 | 20.4286536,-8.453170135,1 549 | 13.98450571,-2.669851277,1 550 | 26.24412617,8.670113649,1 551 | 21.4902206,-13.01197534,1 552 | 25.84633791,4.763566996,1 553 | 0.55528163,30.18418317,1 554 | 2.456216673,31.10322686,1 555 | 2.761286211,30.99557818,1 556 | 2.773324837,32.79313631,1 557 | 3.580306793,33.85533433,1 558 | 3.378404654,31.46727633,1 559 | 3.535739023,33.82416371,1 560 | 3.428958444,30.93798709,1 561 | 4.403984282,33.00834898,1 562 | 3.512139864,33.79824921,1 563 | 0.669602537,34.86978349,1 564 | 1.58424556,34.60797831,1 565 | 1.735645222,30.20049834,1 566 | 2.689472299,34.56536428,1 567 | 0.277001684,34.33801521,1 568 | 2.09429738,32.01901692,1 569 | 4.434827269,32.65690769,1 570 | 3.708642372,32.35594907,1 571 | 4.100675269,34.41024412,1 572 | 0.380509095,34.75882725,1 573 | 3.028848126,32.7792614,1 574 | 1.639286789,33.29246342,1 575 | 2.479747324,34.16350257,1 576 | 4.748986871,30.38731251,1 577 | 3.069477542,-26.67444817,0 578 | 3.701871575,-25.85475994,0 579 | 4.692512101,-29.35718787,0 580 | 2.276285476,-27.26959385,0 581 | 1.542632149,-27.08826932,0 582 | 0.198499506,-25.11292778,0 583 | 1.382055497,-26.29475697,0 584 | 1.659498463,-25.16918849,0 585 | 2.499563767,-28.50463229,0 586 | 2.149219223,-25.67817831,0 587 | 3.916109712,-25.05421654,0 588 | 2.769070231,-28.38295021,0 589 | 3.615055459,-29.58517523,0 590 | 4.569888108,-29.42154402,0 591 | 2.606622863,-25.7529795,0 592 | 2.011663695,-27.54398005,0 593 | 2.610560879,-29.99963093,0 594 | 2.536393782,-25.65444953,0 595 | 2.015658555,-28.85913337,0 596 | 4.782461719,-29.00258951,0 597 | 3.990671004,-27.66453252,0 598 | 1.968936736,-27.66653806,0 599 | 0.397395075,-28.86485592,0 600 | 2.77826635,-29.55515979,0 601 | -------------------------------------------------------------------------------- /5. KNN/KNN/demo_data/6.overlap.csv: -------------------------------------------------------------------------------- 1 | 7,3.2,0 2 | 6.4,3.2,0 3 | 6.9,3.1,0 4 | 5.5,2.3,0 5 | 6.5,2.8,0 6 | 5.7,2.8,0 7 | 6.3,3.3,0 8 | 4.9,2.4,0 9 | 6.6,2.9,0 10 | 5.2,2.7,0 11 | 5,2,0 12 | 5.9,3,0 13 | 6,2.2,0 14 | 6.1,2.9,0 15 | 5.6,2.9,0 16 | 6.7,3.1,0 17 | 5.6,3,0 18 | 5.8,2.7,0 19 | 6.2,2.2,0 20 | 5.6,2.5,0 21 | 5.9,3.2,0 22 | 6.1,2.8,0 23 | 6.3,2.5,0 24 | 6.1,2.8,0 25 | 6.4,2.9,0 26 | 6.6,3,0 27 | 6.8,2.8,0 28 | 6.7,3,0 29 | 6,2.9,0 30 | 5.7,2.6,0 31 | 5.5,2.4,0 32 | 5.5,2.4,0 33 | 5.8,2.7,0 34 | 6,2.7,0 35 | 5.4,3,0 36 | 6,3.4,0 37 | 6.7,3.1,0 38 | 6.3,2.3,0 39 | 5.6,3,0 40 | 5.5,2.5,0 41 | 5.5,2.6,0 42 | 6.1,3,0 43 | 5.8,2.6,0 44 | 5,2.3,0 45 | 5.6,2.7,0 46 | 5.7,3,0 47 | 5.7,2.9,0 48 | 6.2,2.9,0 49 | 5.1,2.5,0 50 | 5.7,2.8,0 51 | 6.3,3.3,1 52 | 5.8,2.7,1 53 | 7.1,3,1 54 | 6.3,2.9,1 55 | 6.5,3,1 56 | 7.6,3,1 57 | 4.9,2.5,1 58 | 7.3,2.9,1 59 | 6.7,2.5,1 60 | 7.2,3.6,1 61 | 6.5,3.2,1 62 | 6.4,2.7,1 63 | 6.8,3,1 64 | 5.7,2.5,1 65 | 5.8,2.8,1 66 | 6.4,3.2,1 67 | 6.5,3,1 68 | 7.7,3.8,1 69 | 7.7,2.6,1 70 | 6,2.2,1 71 | 6.9,3.2,1 72 | 5.6,2.8,1 73 | 7.7,2.8,1 74 | 6.3,2.7,1 75 | 6.7,3.3,1 76 | 7.2,3.2,1 77 | 6.2,2.8,1 78 | 6.1,3,1 79 | 6.4,2.8,1 80 | 7.2,3,1 81 | 7.4,2.8,1 82 | 7.9,3.8,1 83 | 6.4,2.8,1 84 | 6.3,2.8,1 85 | 6.1,2.6,1 86 | 7.7,3,1 87 | 6.3,3.4,1 88 | 6.4,3.1,1 89 | 6,3,1 90 | 6.9,3.1,1 91 | 6.7,3.1,1 92 | 6.9,3.1,1 93 | 5.8,2.7,1 94 | 6.8,3.2,1 95 | 6.7,3.3,1 96 | 6.7,3,1 97 | 6.3,2.5,1 98 | 6.5,3,1 99 | 6.2,3.4,1 100 | 5.9,3,1 101 | -------------------------------------------------------------------------------- /5. KNN/KNN/demo_data/9.random.csv: -------------------------------------------------------------------------------- 1 | 3.74E-01,1.08E+00,0.00E+00 2 | 4.45E-01,1.14E+00,1.00E+00 3 | 5.14E-01,1.13E+00,0.00E+00 4 | 4.66E-01,1.24E+00,1.00E+00 5 | 3.71E-01,9.68E-01,1.00E+00 6 | 4.99E-01,1.11E+00,0.00E+00 7 | 5.19E-01,1.03E+00,1.00E+00 8 | 3.90E-01,9.80E-01,1.00E+00 9 | 3.39E-01,9.51E-01,0.00E+00 10 | 4.88E-01,9.53E-01,1.00E+00 11 | 4.08E-01,9.78E-01,1.00E+00 12 | 3.90E-01,7.04E-01,1.00E+00 13 | 3.95E-01,9.71E-01,1.00E+00 14 | 3.39E-01,8.70E-01,0.00E+00 15 | 5.92E-01,9.51E-01,0.00E+00 16 | 4.01E-01,9.73E-01,0.00E+00 17 | 4.64E-01,7.17E-01,1.00E+00 18 | 5.41E-01,1.21E+00,0.00E+00 19 | 2.41E-01,9.14E-01,0.00E+00 20 | 4.67E-01,1.08E+00,0.00E+00 21 | 4.78E-01,6.85E-01,1.00E+00 22 | 3.79E-01,9.67E-01,0.00E+00 23 | 5.83E-01,7.56E-01,0.00E+00 24 | 3.08E-01,1.14E+00,1.00E+00 25 | 5.23E-01,1.10E+00,0.00E+00 26 | 1.45E-01,1.02E+00,0.00E+00 27 | 5.24E-01,1.16E+00,1.00E+00 28 | 6.17E-01,9.44E-01,1.00E+00 29 | 2.14E-01,9.98E-01,1.00E+00 30 | 3.93E-01,9.64E-01,1.00E+00 31 | 3.93E-01,8.89E-01,0.00E+00 32 | 5.53E-01,1.09E+00,0.00E+00 33 | 2.88E-01,1.15E+00,1.00E+00 34 | 4.35E-01,1.08E+00,1.00E+00 35 | 4.46E-01,6.97E-01,1.00E+00 36 | 2.53E-01,9.67E-01,1.00E+00 37 | 5.04E-01,1.11E+00,1.00E+00 38 | 4.69E-01,7.82E-01,1.00E+00 39 | 3.03E-01,9.86E-01,1.00E+00 40 | 3.12E-01,9.42E-01,0.00E+00 41 | 3.45E-01,9.48E-01,0.00E+00 42 | 6.06E-01,1.03E+00,1.00E+00 43 | 3.08E-01,8.82E-01,0.00E+00 44 | 2.19E-01,1.07E+00,1.00E+00 45 | 2.95E-01,1.05E+00,1.00E+00 46 | 3.71E-01,8.32E-01,1.00E+00 47 | 4.05E-01,9.24E-01,0.00E+00 48 | 3.57E-01,8.95E-01,1.00E+00 49 | 1.42E-01,9.03E-01,0.00E+00 50 | 4.27E-01,1.21E+00,0.00E+00 51 | 1.36E-01,8.12E-01,0.00E+00 52 | 2.31E-01,7.40E-01,0.00E+00 53 | 3.53E-01,1.08E+00,0.00E+00 54 | 2.34E-01,7.11E-01,1.00E+00 55 | 3.29E-01,1.01E+00,1.00E+00 56 | 3.87E-01,1.01E+00,0.00E+00 57 | 3.47E-01,7.28E-01,0.00E+00 58 | 4.21E-01,1.18E+00,0.00E+00 59 | 3.54E-01,1.04E+00,1.00E+00 60 | 2.15E-01,8.99E-01,0.00E+00 61 | 3.43E-01,9.97E-01,1.00E+00 62 | 3.22E-01,1.06E+00,0.00E+00 63 | 3.89E-01,9.94E-01,1.00E+00 64 | 5.18E-01,7.17E-01,0.00E+00 65 | 2.52E-01,7.65E-01,0.00E+00 66 | 3.58E-01,8.78E-01,0.00E+00 67 | 5.28E-01,9.16E-01,0.00E+00 68 | 3.75E-01,9.79E-01,1.00E+00 69 | 4.22E-01,9.97E-01,0.00E+00 70 | 4.42E-01,1.11E+00,0.00E+00 71 | 3.61E-01,9.36E-01,1.00E+00 72 | 4.04E-01,7.32E-01,0.00E+00 73 | 4.38E-01,1.14E+00,0.00E+00 74 | 4.99E-01,9.87E-01,0.00E+00 75 | 4.09E-01,1.01E+00,0.00E+00 76 | 3.58E-01,8.76E-01,0.00E+00 77 | 5.27E-01,1.04E+00,1.00E+00 78 | 2.83E-01,9.20E-01,1.00E+00 79 | 4.13E-01,1.04E+00,1.00E+00 80 | 2.49E-01,8.98E-01,0.00E+00 81 | 1.19E-01,1.08E+00,0.00E+00 82 | 3.97E-01,9.42E-01,1.00E+00 83 | 3.82E-01,9.95E-01,1.00E+00 84 | 4.71E-01,8.82E-01,0.00E+00 85 | 4.66E-01,9.57E-01,0.00E+00 86 | 3.65E-01,1.11E+00,1.00E+00 87 | 5.45E-01,7.71E-01,1.00E+00 88 | 3.96E-01,1.12E+00,0.00E+00 89 | 5.37E-01,1.12E+00,0.00E+00 90 | 3.92E-01,9.67E-01,1.00E+00 91 | 4.90E-01,1.09E+00,0.00E+00 92 | 6.39E-01,8.88E-01,1.00E+00 93 | 4.21E-01,8.04E-01,0.00E+00 94 | 3.83E-01,9.64E-01,1.00E+00 95 | 3.86E-01,9.35E-01,1.00E+00 96 | 2.95E-01,9.10E-01,1.00E+00 97 | 4.34E-01,7.51E-01,1.00E+00 98 | 3.72E-01,9.81E-01,0.00E+00 99 | 4.27E-01,1.15E+00,0.00E+00 100 | 4.46E-01,9.79E-01,0.00E+00 101 | 8.12E-01,8.66E-01,1.00E+00 102 | 7.88E-01,8.31E-01,0.00E+00 103 | 1.05E+00,9.27E-01,0.00E+00 104 | 7.84E-01,9.29E-01,0.00E+00 105 | 9.91E-01,1.02E+00,0.00E+00 106 | 8.17E-01,8.82E-01,0.00E+00 107 | 8.13E-01,5.91E-01,1.00E+00 108 | 8.73E-01,9.22E-01,1.00E+00 109 | 8.06E-01,8.01E-01,0.00E+00 110 | 9.46E-01,8.96E-01,1.00E+00 111 | 7.02E-01,6.38E-01,1.00E+00 112 | 9.67E-01,8.59E-01,1.00E+00 113 | 8.23E-01,1.00E+00,0.00E+00 114 | 1.02E+00,7.60E-01,1.00E+00 115 | 8.85E-01,9.21E-01,0.00E+00 116 | 8.33E-01,8.30E-01,0.00E+00 117 | 8.15E-01,8.76E-01,1.00E+00 118 | 8.10E-01,1.10E+00,0.00E+00 119 | 8.62E-01,6.65E-01,1.00E+00 120 | 8.57E-01,6.26E-01,0.00E+00 121 | 7.03E-01,8.60E-01,1.00E+00 122 | 9.03E-01,7.48E-01,1.00E+00 123 | 7.13E-01,9.96E-01,0.00E+00 124 | 8.53E-01,9.63E-01,1.00E+00 125 | 8.07E-01,8.49E-01,1.00E+00 126 | 8.87E-01,8.95E-01,0.00E+00 127 | 7.67E-01,9.47E-01,0.00E+00 128 | 8.45E-01,8.75E-01,0.00E+00 129 | 8.21E-01,9.07E-01,1.00E+00 130 | 7.77E-01,8.56E-01,1.00E+00 131 | 9.91E-01,1.05E+00,1.00E+00 132 | 8.14E-01,8.78E-01,1.00E+00 133 | 8.16E-01,9.04E-01,0.00E+00 134 | 6.31E-01,8.81E-01,1.00E+00 135 | 7.80E-01,6.69E-01,1.00E+00 136 | 8.40E-01,9.24E-01,1.00E+00 137 | 7.77E-01,9.43E-01,0.00E+00 138 | 7.25E-01,7.30E-01,0.00E+00 139 | 8.26E-01,9.59E-01,0.00E+00 140 | 7.03E-01,7.96E-01,1.00E+00 141 | 7.68E-01,5.96E-01,1.00E+00 142 | 8.12E-01,9.17E-01,0.00E+00 143 | 8.74E-01,1.03E+00,0.00E+00 144 | 9.28E-01,7.18E-01,0.00E+00 145 | 9.87E-01,1.11E+00,0.00E+00 146 | 7.80E-01,7.63E-01,0.00E+00 147 | 6.37E-01,8.86E-01,0.00E+00 148 | 9.31E-01,7.55E-01,0.00E+00 149 | 1.08E+00,7.38E-01,1.00E+00 150 | 6.73E-01,9.44E-01,1.00E+00 151 | 8.98E-01,1.02E+00,1.00E+00 152 | 1.05E+00,8.07E-01,1.00E+00 153 | 9.48E-01,9.98E-01,1.00E+00 154 | 8.62E-01,9.96E-01,0.00E+00 155 | 6.53E-01,8.20E-01,1.00E+00 156 | 7.98E-01,8.85E-01,0.00E+00 157 | 8.25E-01,7.77E-01,1.00E+00 158 | 1.05E+00,7.16E-01,1.00E+00 159 | 6.13E-01,9.10E-01,0.00E+00 160 | 7.06E-01,9.23E-01,1.00E+00 161 | 1.10E+00,9.09E-01,0.00E+00 162 | 5.30E-01,8.68E-01,1.00E+00 163 | 7.50E-01,1.05E+00,0.00E+00 164 | 1.07E+00,7.40E-01,1.00E+00 165 | 7.53E-01,9.49E-01,0.00E+00 166 | 9.70E-01,9.21E-01,0.00E+00 167 | 7.17E-01,1.05E+00,0.00E+00 168 | 9.18E-01,7.73E-01,1.00E+00 169 | 9.26E-01,8.51E-01,0.00E+00 170 | 8.18E-01,8.82E-01,1.00E+00 171 | 6.01E-01,9.26E-01,1.00E+00 172 | 8.51E-01,9.16E-01,1.00E+00 173 | 9.74E-01,9.43E-01,1.00E+00 174 | 1.03E+00,9.40E-01,1.00E+00 175 | 8.48E-01,7.00E-01,0.00E+00 176 | 7.93E-01,8.77E-01,1.00E+00 177 | 9.25E-01,7.08E-01,1.00E+00 178 | 9.57E-01,1.04E+00,0.00E+00 179 | 8.74E-01,6.29E-01,0.00E+00 180 | 7.28E-01,1.08E+00,1.00E+00 181 | 8.11E-01,8.76E-01,0.00E+00 182 | 9.39E-01,9.66E-01,1.00E+00 183 | 9.33E-01,7.42E-01,0.00E+00 184 | 8.01E-01,1.03E+00,1.00E+00 185 | 6.44E-01,9.93E-01,0.00E+00 186 | 8.03E-01,8.59E-01,0.00E+00 187 | 8.24E-01,8.82E-01,1.00E+00 188 | 5.78E-01,7.54E-01,0.00E+00 189 | 6.78E-01,8.80E-01,1.00E+00 190 | 8.55E-01,6.56E-01,1.00E+00 191 | 8.13E-01,8.76E-01,0.00E+00 192 | 7.43E-01,9.62E-01,1.00E+00 193 | 8.33E-01,8.61E-01,0.00E+00 194 | 9.16E-01,8.91E-01,0.00E+00 195 | 8.67E-01,8.60E-01,1.00E+00 196 | 9.61E-01,7.93E-01,0.00E+00 197 | 7.58E-01,1.05E+00,1.00E+00 198 | 8.61E-01,9.08E-01,1.00E+00 199 | 8.06E-01,8.37E-01,1.00E+00 200 | 8.83E-01,7.76E-01,0.00E+00 201 | 1.61E-01,2.94E-01,1.00E+00 202 | 1.58E-02,3.46E-01,0.00E+00 203 | -1.17E-01,3.57E-01,1.00E+00 204 | 9.71E-02,3.54E-01,1.00E+00 205 | 4.53E-02,2.57E-01,0.00E+00 206 | 1.15E-01,2.77E-01,1.00E+00 207 | -3.55E-02,1.49E-01,0.00E+00 208 | 9.28E-02,3.68E-01,1.00E+00 209 | 1.08E-01,3.72E-01,0.00E+00 210 | 3.02E-02,4.47E-01,0.00E+00 211 | -1.06E-01,4.42E-01,1.00E+00 212 | 8.44E-02,3.46E-01,1.00E+00 213 | -1.17E-01,2.16E-01,1.00E+00 214 | 9.90E-02,3.07E-01,0.00E+00 215 | 2.13E-01,3.53E-01,0.00E+00 216 | 4.56E-02,3.48E-01,0.00E+00 217 | -7.17E-02,5.27E-01,0.00E+00 218 | 1.19E-01,3.74E-01,0.00E+00 219 | 6.03E-02,4.30E-01,0.00E+00 220 | 1.73E-02,3.84E-01,0.00E+00 221 | 5.25E-02,2.27E-01,1.00E+00 222 | 4.33E-02,4.77E-01,0.00E+00 223 | 1.62E-01,2.76E-01,0.00E+00 224 | 2.62E-02,3.85E-01,1.00E+00 225 | -6.53E-02,3.87E-01,1.00E+00 226 | -9.22E-02,4.18E-01,0.00E+00 227 | -3.75E-02,2.31E-01,0.00E+00 228 | 3.26E-01,3.92E-01,1.00E+00 229 | 2.52E-01,3.14E-01,0.00E+00 230 | -6.02E-02,4.89E-01,1.00E+00 231 | 4.46E-03,5.91E-01,1.00E+00 232 | 1.86E-01,1.78E-01,0.00E+00 233 | 3.18E-01,2.16E-01,0.00E+00 234 | -3.87E-02,4.18E-01,1.00E+00 235 | 3.55E-01,4.25E-01,0.00E+00 236 | 7.50E-02,3.66E-01,0.00E+00 237 | 9.40E-02,3.18E-01,1.00E+00 238 | 9.13E-02,3.36E-01,1.00E+00 239 | 1.22E-01,4.08E-01,0.00E+00 240 | 2.29E-01,4.81E-01,0.00E+00 241 | -1.77E-01,4.01E-01,1.00E+00 242 | -1.73E-01,3.00E-01,1.00E+00 243 | 6.65E-02,2.08E-01,0.00E+00 244 | 2.04E-01,2.67E-01,0.00E+00 245 | 3.17E-01,3.18E-01,1.00E+00 246 | 3.29E-01,3.84E-01,1.00E+00 247 | -3.39E-02,3.60E-01,1.00E+00 248 | 1.26E-01,2.85E-01,1.00E+00 249 | 1.40E-01,1.78E-01,0.00E+00 250 | -6.02E-02,5.11E-01,1.00E+00 251 | -1.20E-01,5.51E-01,0.00E+00 252 | 3.73E-01,3.75E-01,1.00E+00 253 | 1.23E-01,4.89E-01,0.00E+00 254 | -4.47E-02,3.75E-01,0.00E+00 255 | 1.06E-01,3.27E-01,0.00E+00 256 | 1.48E-01,4.07E-01,0.00E+00 257 | 8.40E-02,3.16E-01,1.00E+00 258 | -2.40E-02,1.77E-01,1.00E+00 259 | 1.28E-01,3.50E-01,1.00E+00 260 | 1.84E-01,1.30E-01,0.00E+00 261 | 1.05E-01,3.37E-01,0.00E+00 262 | -2.24E-02,4.77E-01,1.00E+00 263 | -8.51E-03,4.23E-01,1.00E+00 264 | -8.08E-02,2.22E-01,0.00E+00 265 | 1.16E-01,9.45E-02,1.00E+00 266 | 2.22E-01,4.64E-01,1.00E+00 267 | 1.71E-01,4.51E-01,0.00E+00 268 | 6.85E-02,3.42E-01,0.00E+00 269 | -7.10E-02,2.08E-01,1.00E+00 270 | 3.79E-02,3.00E-01,0.00E+00 271 | 1.42E-01,5.03E-01,0.00E+00 272 | 2.02E-03,3.50E-01,0.00E+00 273 | -9.46E-02,5.14E-01,1.00E+00 274 | 2.57E-01,3.90E-01,0.00E+00 275 | 1.83E-02,3.77E-01,1.00E+00 276 | 6.73E-02,2.06E-01,1.00E+00 277 | 7.03E-02,3.46E-01,1.00E+00 278 | 2.61E-01,2.96E-01,1.00E+00 279 | -6.19E-02,5.46E-01,0.00E+00 280 | -3.02E-02,3.44E-01,1.00E+00 281 | 1.83E-01,2.99E-01,0.00E+00 282 | 3.27E-02,5.44E-01,1.00E+00 283 | 4.06E-02,3.68E-01,1.00E+00 284 | 9.76E-02,2.99E-01,0.00E+00 285 | -2.93E-02,3.15E-01,1.00E+00 286 | 3.59E-01,2.87E-01,0.00E+00 287 | 7.55E-02,2.87E-01,0.00E+00 288 | 1.95E-02,4.80E-01,0.00E+00 289 | 4.06E-02,4.03E-01,1.00E+00 290 | 1.37E-01,4.96E-01,1.00E+00 291 | -2.06E-01,4.19E-01,1.00E+00 292 | 1.73E-01,3.50E-01,0.00E+00 293 | 2.24E-02,1.65E-01,0.00E+00 294 | 5.46E-02,3.41E-01,1.00E+00 295 | 1.31E-01,4.46E-01,1.00E+00 296 | 8.52E-02,3.50E-01,1.00E+00 297 | 7.11E-02,4.31E-01,0.00E+00 298 | 1.33E-01,5.34E-01,1.00E+00 299 | 1.71E-01,3.47E-01,0.00E+00 300 | 1.77E-01,1.09E-01,1.00E+00 301 | 5.60E-01,3.24E-01,1.00E+00 302 | 7.72E-01,6.45E-01,1.00E+00 303 | 5.89E-01,5.20E-01,0.00E+00 304 | 7.89E-01,5.91E-01,0.00E+00 305 | 3.48E-01,5.62E-01,1.00E+00 306 | 4.90E-01,4.26E-01,1.00E+00 307 | 4.19E-01,6.05E-01,0.00E+00 308 | 7.80E-01,5.71E-01,1.00E+00 309 | 3.92E-01,4.91E-01,1.00E+00 310 | 5.21E-01,5.44E-01,0.00E+00 311 | 4.99E-01,2.69E-01,0.00E+00 312 | 8.51E-01,6.14E-01,0.00E+00 313 | 5.91E-01,5.34E-01,1.00E+00 314 | 6.40E-01,4.87E-01,0.00E+00 315 | 6.34E-01,5.34E-01,1.00E+00 316 | 3.62E-01,6.41E-01,1.00E+00 317 | 3.12E-01,5.88E-01,1.00E+00 318 | 5.11E-01,4.18E-01,1.00E+00 319 | 5.86E-01,5.33E-01,0.00E+00 320 | 6.60E-01,6.78E-01,1.00E+00 321 | 8.11E-01,6.01E-01,1.00E+00 322 | 8.37E-01,6.22E-01,0.00E+00 323 | 3.46E-01,5.05E-01,1.00E+00 324 | 4.37E-01,7.46E-01,0.00E+00 325 | 8.00E-01,5.28E-01,0.00E+00 326 | 5.16E-01,4.82E-01,0.00E+00 327 | 8.02E-01,5.22E-01,0.00E+00 328 | 3.93E-01,4.85E-01,1.00E+00 329 | 7.02E-01,4.86E-01,1.00E+00 330 | 4.91E-01,4.98E-01,0.00E+00 331 | 5.94E-01,5.20E-01,1.00E+00 332 | 6.01E-01,5.25E-01,1.00E+00 333 | 6.08E-01,5.30E-01,0.00E+00 334 | 4.45E-01,5.33E-01,0.00E+00 335 | 6.10E-01,3.61E-01,1.00E+00 336 | 3.70E-01,3.21E-01,1.00E+00 337 | 6.92E-01,5.90E-01,1.00E+00 338 | 7.92E-01,3.36E-01,0.00E+00 339 | 5.55E-01,5.11E-01,0.00E+00 340 | 8.31E-01,3.69E-01,1.00E+00 341 | 5.17E-01,5.20E-01,1.00E+00 342 | 7.19E-01,5.65E-01,1.00E+00 343 | 5.96E-01,3.72E-01,0.00E+00 344 | 5.82E-01,5.27E-01,1.00E+00 345 | 5.97E-01,5.02E-01,1.00E+00 346 | 5.26E-01,5.69E-01,0.00E+00 347 | 6.34E-01,7.63E-01,1.00E+00 348 | 3.12E-01,6.19E-01,1.00E+00 349 | 6.40E-01,2.41E-01,1.00E+00 350 | 7.11E-01,5.87E-01,0.00E+00 351 | 6.64E-01,6.29E-01,0.00E+00 352 | 4.23E-01,3.83E-01,0.00E+00 353 | 4.23E-01,7.61E-01,1.00E+00 354 | 5.53E-01,6.47E-01,0.00E+00 355 | 6.72E-01,5.61E-01,0.00E+00 356 | 5.19E-01,3.20E-01,0.00E+00 357 | 5.89E-01,7.41E-01,1.00E+00 358 | 7.83E-01,5.44E-01,0.00E+00 359 | 3.35E-01,3.94E-01,1.00E+00 360 | 7.48E-01,3.46E-01,1.00E+00 361 | 7.94E-01,3.28E-01,0.00E+00 362 | 5.58E-01,6.59E-01,0.00E+00 363 | 6.31E-01,3.75E-01,0.00E+00 364 | 6.09E-01,5.59E-01,1.00E+00 365 | 7.20E-01,4.16E-01,0.00E+00 366 | 7.43E-01,2.97E-01,0.00E+00 367 | 7.15E-01,2.86E-01,0.00E+00 368 | 6.51E-01,5.19E-01,0.00E+00 369 | 4.27E-01,4.35E-01,1.00E+00 370 | 6.23E-01,4.29E-01,1.00E+00 371 | 6.40E-01,6.99E-01,1.00E+00 372 | 4.70E-01,4.63E-01,1.00E+00 373 | 5.84E-01,5.70E-01,0.00E+00 374 | 4.64E-01,5.87E-01,1.00E+00 375 | 6.70E-01,6.81E-01,1.00E+00 376 | 5.88E-01,6.88E-01,1.00E+00 377 | 5.92E-01,4.49E-01,1.00E+00 378 | 5.32E-01,4.49E-01,0.00E+00 379 | 7.01E-01,6.06E-01,0.00E+00 380 | 3.90E-01,5.80E-01,0.00E+00 381 | 7.47E-01,7.12E-01,1.00E+00 382 | 7.53E-01,4.34E-01,1.00E+00 383 | 6.16E-01,5.38E-01,1.00E+00 384 | 5.57E-01,6.14E-01,0.00E+00 385 | 5.42E-01,6.47E-01,0.00E+00 386 | 4.88E-01,4.81E-01,1.00E+00 387 | 5.95E-01,7.67E-01,1.00E+00 388 | 6.81E-01,6.32E-01,0.00E+00 389 | 5.84E-01,4.06E-01,0.00E+00 390 | 6.70E-01,7.40E-01,0.00E+00 391 | 5.56E-01,7.01E-01,0.00E+00 392 | 5.16E-01,2.96E-01,0.00E+00 393 | 7.26E-01,6.18E-01,0.00E+00 394 | 2.99E-01,4.80E-01,1.00E+00 395 | 6.37E-01,5.95E-01,0.00E+00 396 | 3.24E-01,4.31E-01,1.00E+00 397 | 6.02E-01,5.88E-01,0.00E+00 398 | 6.16E-01,5.03E-01,1.00E+00 399 | 7.42E-01,5.11E-01,1.00E+00 400 | 4.95E-01,2.81E-01,1.00E+00 401 | -------------------------------------------------------------------------------- /5. KNN/KNN/demo_data/meshgrid_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/5. KNN/KNN/demo_data/meshgrid_image.png -------------------------------------------------------------------------------- /7. Model Selection Part 1/Case 1_ Model Creation_CrossValidation-Linear-Regression/CrossValidation_Linear Regression/CarPrice_Assignment.csv: -------------------------------------------------------------------------------- 1 | car_ID,symboling,CarName,fueltype,aspiration,doornumber,carbody,drivewheel,enginelocation,wheelbase,carlength,carwidth,carheight,curbweight,enginetype,cylindernumber,enginesize,fuelsystem,boreratio,stroke,compressionratio,horsepower,peakrpm,citympg,highwaympg,price 2 | 1,3,alfa-romero giulia,gas,std,two,convertible,rwd,front,88.6,168.8,64.1,48.8,2548,dohc,four,130,mpfi,3.47,2.68,9,111,5000,21,27,13495 3 | 2,3,alfa-romero stelvio,gas,std,two,convertible,rwd,front,88.6,168.8,64.1,48.8,2548,dohc,four,130,mpfi,3.47,2.68,9,111,5000,21,27,16500 4 | 3,1,alfa-romero Quadrifoglio,gas,std,two,hatchback,rwd,front,94.5,171.2,65.5,52.4,2823,ohcv,six,152,mpfi,2.68,3.47,9,154,5000,19,26,16500 5 | 4,2,audi 100 ls,gas,std,four,sedan,fwd,front,99.8,176.6,66.2,54.3,2337,ohc,four,109,mpfi,3.19,3.4,10,102,5500,24,30,13950 6 | 5,2,audi 100ls,gas,std,four,sedan,4wd,front,99.4,176.6,66.4,54.3,2824,ohc,five,136,mpfi,3.19,3.4,8,115,5500,18,22,17450 7 | 6,2,audi fox,gas,std,two,sedan,fwd,front,99.8,177.3,66.3,53.1,2507,ohc,five,136,mpfi,3.19,3.4,8.5,110,5500,19,25,15250 8 | 7,1,audi 100ls,gas,std,four,sedan,fwd,front,105.8,192.7,71.4,55.7,2844,ohc,five,136,mpfi,3.19,3.4,8.5,110,5500,19,25,17710 9 | 8,1,audi 5000,gas,std,four,wagon,fwd,front,105.8,192.7,71.4,55.7,2954,ohc,five,136,mpfi,3.19,3.4,8.5,110,5500,19,25,18920 10 | 9,1,audi 4000,gas,turbo,four,sedan,fwd,front,105.8,192.7,71.4,55.9,3086,ohc,five,131,mpfi,3.13,3.4,8.3,140,5500,17,20,23875 11 | 10,0,audi 5000s (diesel),gas,turbo,two,hatchback,4wd,front,99.5,178.2,67.9,52,3053,ohc,five,131,mpfi,3.13,3.4,7,160,5500,16,22,17859.167 12 | 11,2,bmw 320i,gas,std,two,sedan,rwd,front,101.2,176.8,64.8,54.3,2395,ohc,four,108,mpfi,3.5,2.8,8.8,101,5800,23,29,16430 13 | 12,0,bmw 320i,gas,std,four,sedan,rwd,front,101.2,176.8,64.8,54.3,2395,ohc,four,108,mpfi,3.5,2.8,8.8,101,5800,23,29,16925 14 | 13,0,bmw x1,gas,std,two,sedan,rwd,front,101.2,176.8,64.8,54.3,2710,ohc,six,164,mpfi,3.31,3.19,9,121,4250,21,28,20970 15 | 14,0,bmw x3,gas,std,four,sedan,rwd,front,101.2,176.8,64.8,54.3,2765,ohc,six,164,mpfi,3.31,3.19,9,121,4250,21,28,21105 16 | 15,1,bmw z4,gas,std,four,sedan,rwd,front,103.5,189,66.9,55.7,3055,ohc,six,164,mpfi,3.31,3.19,9,121,4250,20,25,24565 17 | 16,0,bmw x4,gas,std,four,sedan,rwd,front,103.5,189,66.9,55.7,3230,ohc,six,209,mpfi,3.62,3.39,8,182,5400,16,22,30760 18 | 17,0,bmw x5,gas,std,two,sedan,rwd,front,103.5,193.8,67.9,53.7,3380,ohc,six,209,mpfi,3.62,3.39,8,182,5400,16,22,41315 19 | 18,0,bmw x3,gas,std,four,sedan,rwd,front,110,197,70.9,56.3,3505,ohc,six,209,mpfi,3.62,3.39,8,182,5400,15,20,36880 20 | 19,2,chevrolet impala,gas,std,two,hatchback,fwd,front,88.4,141.1,60.3,53.2,1488,l,three,61,2bbl,2.91,3.03,9.5,48,5100,47,53,5151 21 | 20,1,chevrolet monte carlo,gas,std,two,hatchback,fwd,front,94.5,155.9,63.6,52,1874,ohc,four,90,2bbl,3.03,3.11,9.6,70,5400,38,43,6295 22 | 21,0,chevrolet vega 2300,gas,std,four,sedan,fwd,front,94.5,158.8,63.6,52,1909,ohc,four,90,2bbl,3.03,3.11,9.6,70,5400,38,43,6575 23 | 22,1,dodge rampage,gas,std,two,hatchback,fwd,front,93.7,157.3,63.8,50.8,1876,ohc,four,90,2bbl,2.97,3.23,9.41,68,5500,37,41,5572 24 | 23,1,dodge challenger se,gas,std,two,hatchback,fwd,front,93.7,157.3,63.8,50.8,1876,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,6377 25 | 24,1,dodge d200,gas,turbo,two,hatchback,fwd,front,93.7,157.3,63.8,50.8,2128,ohc,four,98,mpfi,3.03,3.39,7.6,102,5500,24,30,7957 26 | 25,1,dodge monaco (sw),gas,std,four,hatchback,fwd,front,93.7,157.3,63.8,50.6,1967,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,6229 27 | 26,1,dodge colt hardtop,gas,std,four,sedan,fwd,front,93.7,157.3,63.8,50.6,1989,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,6692 28 | 27,1,dodge colt (sw),gas,std,four,sedan,fwd,front,93.7,157.3,63.8,50.6,1989,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,7609 29 | 28,1,dodge coronet custom,gas,turbo,two,sedan,fwd,front,93.7,157.3,63.8,50.6,2191,ohc,four,98,mpfi,3.03,3.39,7.6,102,5500,24,30,8558 30 | 29,-1,dodge dart custom,gas,std,four,wagon,fwd,front,103.3,174.6,64.6,59.8,2535,ohc,four,122,2bbl,3.34,3.46,8.5,88,5000,24,30,8921 31 | 30,3,dodge coronet custom (sw),gas,turbo,two,hatchback,fwd,front,95.9,173.2,66.3,50.2,2811,ohc,four,156,mfi,3.6,3.9,7,145,5000,19,24,12964 32 | 31,2,honda civic,gas,std,two,hatchback,fwd,front,86.6,144.6,63.9,50.8,1713,ohc,four,92,1bbl,2.91,3.41,9.6,58,4800,49,54,6479 33 | 32,2,honda civic cvcc,gas,std,two,hatchback,fwd,front,86.6,144.6,63.9,50.8,1819,ohc,four,92,1bbl,2.91,3.41,9.2,76,6000,31,38,6855 34 | 33,1,honda civic,gas,std,two,hatchback,fwd,front,93.7,150,64,52.6,1837,ohc,four,79,1bbl,2.91,3.07,10.1,60,5500,38,42,5399 35 | 34,1,honda accord cvcc,gas,std,two,hatchback,fwd,front,93.7,150,64,52.6,1940,ohc,four,92,1bbl,2.91,3.41,9.2,76,6000,30,34,6529 36 | 35,1,honda civic cvcc,gas,std,two,hatchback,fwd,front,93.7,150,64,52.6,1956,ohc,four,92,1bbl,2.91,3.41,9.2,76,6000,30,34,7129 37 | 36,0,honda accord lx,gas,std,four,sedan,fwd,front,96.5,163.4,64,54.5,2010,ohc,four,92,1bbl,2.91,3.41,9.2,76,6000,30,34,7295 38 | 37,0,honda civic 1500 gl,gas,std,four,wagon,fwd,front,96.5,157.1,63.9,58.3,2024,ohc,four,92,1bbl,2.92,3.41,9.2,76,6000,30,34,7295 39 | 38,0,honda accord,gas,std,two,hatchback,fwd,front,96.5,167.5,65.2,53.3,2236,ohc,four,110,1bbl,3.15,3.58,9,86,5800,27,33,7895 40 | 39,0,honda civic 1300,gas,std,two,hatchback,fwd,front,96.5,167.5,65.2,53.3,2289,ohc,four,110,1bbl,3.15,3.58,9,86,5800,27,33,9095 41 | 40,0,honda prelude,gas,std,four,sedan,fwd,front,96.5,175.4,65.2,54.1,2304,ohc,four,110,1bbl,3.15,3.58,9,86,5800,27,33,8845 42 | 41,0,honda accord,gas,std,four,sedan,fwd,front,96.5,175.4,62.5,54.1,2372,ohc,four,110,1bbl,3.15,3.58,9,86,5800,27,33,10295 43 | 42,0,honda civic,gas,std,four,sedan,fwd,front,96.5,175.4,65.2,54.1,2465,ohc,four,110,mpfi,3.15,3.58,9,101,5800,24,28,12945 44 | 43,1,honda civic (auto),gas,std,two,sedan,fwd,front,96.5,169.1,66,51,2293,ohc,four,110,2bbl,3.15,3.58,9.1,100,5500,25,31,10345 45 | 44,0,isuzu MU-X,gas,std,four,sedan,rwd,front,94.3,170.7,61.8,53.5,2337,ohc,four,111,2bbl,3.31,3.23,8.5,78,4800,24,29,6785 46 | 45,1,isuzu D-Max ,gas,std,two,sedan,fwd,front,94.5,155.9,63.6,52,1874,ohc,four,90,2bbl,3.03,3.11,9.6,70,5400,38,43,8916.5 47 | 46,0,isuzu D-Max V-Cross,gas,std,four,sedan,fwd,front,94.5,155.9,63.6,52,1909,ohc,four,90,2bbl,3.03,3.11,9.6,70,5400,38,43,8916.5 48 | 47,2,isuzu D-Max ,gas,std,two,hatchback,rwd,front,96,172.6,65.2,51.4,2734,ohc,four,119,spfi,3.43,3.23,9.2,90,5000,24,29,11048 49 | 48,0,jaguar xj,gas,std,four,sedan,rwd,front,113,199.6,69.6,52.8,4066,dohc,six,258,mpfi,3.63,4.17,8.1,176,4750,15,19,32250 50 | 49,0,jaguar xf,gas,std,four,sedan,rwd,front,113,199.6,69.6,52.8,4066,dohc,six,258,mpfi,3.63,4.17,8.1,176,4750,15,19,35550 51 | 50,0,jaguar xk,gas,std,two,sedan,rwd,front,102,191.7,70.6,47.8,3950,ohcv,twelve,326,mpfi,3.54,2.76,11.5,262,5000,13,17,36000 52 | 51,1,maxda rx3,gas,std,two,hatchback,fwd,front,93.1,159.1,64.2,54.1,1890,ohc,four,91,2bbl,3.03,3.15,9,68,5000,30,31,5195 53 | 52,1,maxda glc deluxe,gas,std,two,hatchback,fwd,front,93.1,159.1,64.2,54.1,1900,ohc,four,91,2bbl,3.03,3.15,9,68,5000,31,38,6095 54 | 53,1,mazda rx2 coupe,gas,std,two,hatchback,fwd,front,93.1,159.1,64.2,54.1,1905,ohc,four,91,2bbl,3.03,3.15,9,68,5000,31,38,6795 55 | 54,1,mazda rx-4,gas,std,four,sedan,fwd,front,93.1,166.8,64.2,54.1,1945,ohc,four,91,2bbl,3.03,3.15,9,68,5000,31,38,6695 56 | 55,1,mazda glc deluxe,gas,std,four,sedan,fwd,front,93.1,166.8,64.2,54.1,1950,ohc,four,91,2bbl,3.08,3.15,9,68,5000,31,38,7395 57 | 56,3,mazda 626,gas,std,two,hatchback,rwd,front,95.3,169,65.7,49.6,2380,rotor,two,70,4bbl,3.33,3.255,9.4,101,6000,17,23,10945 58 | 57,3,mazda glc,gas,std,two,hatchback,rwd,front,95.3,169,65.7,49.6,2380,rotor,two,70,4bbl,3.33,3.255,9.4,101,6000,17,23,11845 59 | 58,3,mazda rx-7 gs,gas,std,two,hatchback,rwd,front,95.3,169,65.7,49.6,2385,rotor,two,70,4bbl,3.33,3.255,9.4,101,6000,17,23,13645 60 | 59,3,mazda glc 4,gas,std,two,hatchback,rwd,front,95.3,169,65.7,49.6,2500,rotor,two,80,mpfi,3.33,3.255,9.4,135,6000,16,23,15645 61 | 60,1,mazda 626,gas,std,two,hatchback,fwd,front,98.8,177.8,66.5,53.7,2385,ohc,four,122,2bbl,3.39,3.39,8.6,84,4800,26,32,8845 62 | 61,0,mazda glc custom l,gas,std,four,sedan,fwd,front,98.8,177.8,66.5,55.5,2410,ohc,four,122,2bbl,3.39,3.39,8.6,84,4800,26,32,8495 63 | 62,1,mazda glc custom,gas,std,two,hatchback,fwd,front,98.8,177.8,66.5,53.7,2385,ohc,four,122,2bbl,3.39,3.39,8.6,84,4800,26,32,10595 64 | 63,0,mazda rx-4,gas,std,four,sedan,fwd,front,98.8,177.8,66.5,55.5,2410,ohc,four,122,2bbl,3.39,3.39,8.6,84,4800,26,32,10245 65 | 64,0,mazda glc deluxe,diesel,std,four,sedan,fwd,front,98.8,177.8,66.5,55.5,2443,ohc,four,122,idi,3.39,3.39,22.7,64,4650,36,42,10795 66 | 65,0,mazda 626,gas,std,four,hatchback,fwd,front,98.8,177.8,66.5,55.5,2425,ohc,four,122,2bbl,3.39,3.39,8.6,84,4800,26,32,11245 67 | 66,0,mazda glc,gas,std,four,sedan,rwd,front,104.9,175,66.1,54.4,2670,ohc,four,140,mpfi,3.76,3.16,8,120,5000,19,27,18280 68 | 67,0,mazda rx-7 gs,diesel,std,four,sedan,rwd,front,104.9,175,66.1,54.4,2700,ohc,four,134,idi,3.43,3.64,22,72,4200,31,39,18344 69 | 68,-1,buick electra 225 custom,diesel,turbo,four,sedan,rwd,front,110,190.9,70.3,56.5,3515,ohc,five,183,idi,3.58,3.64,21.5,123,4350,22,25,25552 70 | 69,-1,buick century luxus (sw),diesel,turbo,four,wagon,rwd,front,110,190.9,70.3,58.7,3750,ohc,five,183,idi,3.58,3.64,21.5,123,4350,22,25,28248 71 | 70,0,buick century,diesel,turbo,two,hardtop,rwd,front,106.7,187.5,70.3,54.9,3495,ohc,five,183,idi,3.58,3.64,21.5,123,4350,22,25,28176 72 | 71,-1,buick skyhawk,diesel,turbo,four,sedan,rwd,front,115.6,202.6,71.7,56.3,3770,ohc,five,183,idi,3.58,3.64,21.5,123,4350,22,25,31600 73 | 72,-1,buick opel isuzu deluxe,gas,std,four,sedan,rwd,front,115.6,202.6,71.7,56.5,3740,ohcv,eight,234,mpfi,3.46,3.1,8.3,155,4750,16,18,34184 74 | 73,3,buick skylark,gas,std,two,convertible,rwd,front,96.6,180.3,70.5,50.8,3685,ohcv,eight,234,mpfi,3.46,3.1,8.3,155,4750,16,18,35056 75 | 74,0,buick century special,gas,std,four,sedan,rwd,front,120.9,208.1,71.7,56.7,3900,ohcv,eight,308,mpfi,3.8,3.35,8,184,4500,14,16,40960 76 | 75,1,buick regal sport coupe (turbo),gas,std,two,hardtop,rwd,front,112,199.2,72,55.4,3715,ohcv,eight,304,mpfi,3.8,3.35,8,184,4500,14,16,45400 77 | 76,1,mercury cougar,gas,turbo,two,hatchback,rwd,front,102.7,178.4,68,54.8,2910,ohc,four,140,mpfi,3.78,3.12,8,175,5000,19,24,16503 78 | 77,2,mitsubishi mirage,gas,std,two,hatchback,fwd,front,93.7,157.3,64.4,50.8,1918,ohc,four,92,2bbl,2.97,3.23,9.4,68,5500,37,41,5389 79 | 78,2,mitsubishi lancer,gas,std,two,hatchback,fwd,front,93.7,157.3,64.4,50.8,1944,ohc,four,92,2bbl,2.97,3.23,9.4,68,5500,31,38,6189 80 | 79,2,mitsubishi outlander,gas,std,two,hatchback,fwd,front,93.7,157.3,64.4,50.8,2004,ohc,four,92,2bbl,2.97,3.23,9.4,68,5500,31,38,6669 81 | 80,1,mitsubishi g4,gas,turbo,two,hatchback,fwd,front,93,157.3,63.8,50.8,2145,ohc,four,98,spdi,3.03,3.39,7.6,102,5500,24,30,7689 82 | 81,3,mitsubishi mirage g4,gas,turbo,two,hatchback,fwd,front,96.3,173,65.4,49.4,2370,ohc,four,110,spdi,3.17,3.46,7.5,116,5500,23,30,9959 83 | 82,3,mitsubishi g4,gas,std,two,hatchback,fwd,front,96.3,173,65.4,49.4,2328,ohc,four,122,2bbl,3.35,3.46,8.5,88,5000,25,32,8499 84 | 83,3,mitsubishi outlander,gas,turbo,two,hatchback,fwd,front,95.9,173.2,66.3,50.2,2833,ohc,four,156,spdi,3.58,3.86,7,145,5000,19,24,12629 85 | 84,3,mitsubishi g4,gas,turbo,two,hatchback,fwd,front,95.9,173.2,66.3,50.2,2921,ohc,four,156,spdi,3.59,3.86,7,145,5000,19,24,14869 86 | 85,3,mitsubishi mirage g4,gas,turbo,two,hatchback,fwd,front,95.9,173.2,66.3,50.2,2926,ohc,four,156,spdi,3.59,3.86,7,145,5000,19,24,14489 87 | 86,1,mitsubishi montero,gas,std,four,sedan,fwd,front,96.3,172.4,65.4,51.6,2365,ohc,four,122,2bbl,3.35,3.46,8.5,88,5000,25,32,6989 88 | 87,1,mitsubishi pajero,gas,std,four,sedan,fwd,front,96.3,172.4,65.4,51.6,2405,ohc,four,122,2bbl,3.35,3.46,8.5,88,5000,25,32,8189 89 | 88,1,mitsubishi outlander,gas,turbo,four,sedan,fwd,front,96.3,172.4,65.4,51.6,2403,ohc,four,110,spdi,3.17,3.46,7.5,116,5500,23,30,9279 90 | 89,-1,mitsubishi mirage g4,gas,std,four,sedan,fwd,front,96.3,172.4,65.4,51.6,2403,ohc,four,110,spdi,3.17,3.46,7.5,116,5500,23,30,9279 91 | 90,1,Nissan versa,gas,std,two,sedan,fwd,front,94.5,165.3,63.8,54.5,1889,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,5499 92 | 91,1,nissan gt-r,diesel,std,two,sedan,fwd,front,94.5,165.3,63.8,54.5,2017,ohc,four,103,idi,2.99,3.47,21.9,55,4800,45,50,7099 93 | 92,1,nissan rogue,gas,std,two,sedan,fwd,front,94.5,165.3,63.8,54.5,1918,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,6649 94 | 93,1,nissan latio,gas,std,four,sedan,fwd,front,94.5,165.3,63.8,54.5,1938,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,6849 95 | 94,1,nissan titan,gas,std,four,wagon,fwd,front,94.5,170.2,63.8,53.5,2024,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,7349 96 | 95,1,nissan leaf,gas,std,two,sedan,fwd,front,94.5,165.3,63.8,54.5,1951,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,7299 97 | 96,1,nissan juke,gas,std,two,hatchback,fwd,front,94.5,165.6,63.8,53.3,2028,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,7799 98 | 97,1,nissan latio,gas,std,four,sedan,fwd,front,94.5,165.3,63.8,54.5,1971,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,7499 99 | 98,1,nissan note,gas,std,four,wagon,fwd,front,94.5,170.2,63.8,53.5,2037,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,7999 100 | 99,2,nissan clipper,gas,std,two,hardtop,fwd,front,95.1,162.4,63.8,53.3,2008,ohc,four,97,2bbl,3.15,3.29,9.4,69,5200,31,37,8249 101 | 100,0,nissan rogue,gas,std,four,hatchback,fwd,front,97.2,173.4,65.2,54.7,2324,ohc,four,120,2bbl,3.33,3.47,8.5,97,5200,27,34,8949 102 | 101,0,nissan nv200,gas,std,four,sedan,fwd,front,97.2,173.4,65.2,54.7,2302,ohc,four,120,2bbl,3.33,3.47,8.5,97,5200,27,34,9549 103 | 102,0,nissan dayz,gas,std,four,sedan,fwd,front,100.4,181.7,66.5,55.1,3095,ohcv,six,181,mpfi,3.43,3.27,9,152,5200,17,22,13499 104 | 103,0,nissan fuga,gas,std,four,wagon,fwd,front,100.4,184.6,66.5,56.1,3296,ohcv,six,181,mpfi,3.43,3.27,9,152,5200,17,22,14399 105 | 104,0,nissan otti,gas,std,four,sedan,fwd,front,100.4,184.6,66.5,55.1,3060,ohcv,six,181,mpfi,3.43,3.27,9,152,5200,19,25,13499 106 | 105,3,nissan teana,gas,std,two,hatchback,rwd,front,91.3,170.7,67.9,49.7,3071,ohcv,six,181,mpfi,3.43,3.27,9,160,5200,19,25,17199 107 | 106,3,nissan kicks,gas,turbo,two,hatchback,rwd,front,91.3,170.7,67.9,49.7,3139,ohcv,six,181,mpfi,3.43,3.27,7.8,200,5200,17,23,19699 108 | 107,1,nissan clipper,gas,std,two,hatchback,rwd,front,99.2,178.5,67.9,49.7,3139,ohcv,six,181,mpfi,3.43,3.27,9,160,5200,19,25,18399 109 | 108,0,peugeot 504,gas,std,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3020,l,four,120,mpfi,3.46,3.19,8.4,97,5000,19,24,11900 110 | 109,0,peugeot 304,diesel,turbo,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3197,l,four,152,idi,3.7,3.52,21,95,4150,28,33,13200 111 | 110,0,peugeot 504 (sw),gas,std,four,wagon,rwd,front,114.2,198.9,68.4,58.7,3230,l,four,120,mpfi,3.46,3.19,8.4,97,5000,19,24,12440 112 | 111,0,peugeot 504,diesel,turbo,four,wagon,rwd,front,114.2,198.9,68.4,58.7,3430,l,four,152,idi,3.7,3.52,21,95,4150,25,25,13860 113 | 112,0,peugeot 504,gas,std,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3075,l,four,120,mpfi,3.46,2.19,8.4,95,5000,19,24,15580 114 | 113,0,peugeot 604sl,diesel,turbo,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3252,l,four,152,idi,3.7,3.52,21,95,4150,28,33,16900 115 | 114,0,peugeot 504,gas,std,four,wagon,rwd,front,114.2,198.9,68.4,56.7,3285,l,four,120,mpfi,3.46,2.19,8.4,95,5000,19,24,16695 116 | 115,0,peugeot 505s turbo diesel,diesel,turbo,four,wagon,rwd,front,114.2,198.9,68.4,58.7,3485,l,four,152,idi,3.7,3.52,21,95,4150,25,25,17075 117 | 116,0,peugeot 504,gas,std,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3075,l,four,120,mpfi,3.46,3.19,8.4,97,5000,19,24,16630 118 | 117,0,peugeot 504,diesel,turbo,four,sedan,rwd,front,107.9,186.7,68.4,56.7,3252,l,four,152,idi,3.7,3.52,21,95,4150,28,33,17950 119 | 118,0,peugeot 604sl,gas,turbo,four,sedan,rwd,front,108,186.7,68.3,56,3130,l,four,134,mpfi,3.61,3.21,7,142,5600,18,24,18150 120 | 119,1,plymouth fury iii,gas,std,two,hatchback,fwd,front,93.7,157.3,63.8,50.8,1918,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,37,41,5572 121 | 120,1,plymouth cricket,gas,turbo,two,hatchback,fwd,front,93.7,157.3,63.8,50.8,2128,ohc,four,98,spdi,3.03,3.39,7.6,102,5500,24,30,7957 122 | 121,1,plymouth fury iii,gas,std,four,hatchback,fwd,front,93.7,157.3,63.8,50.6,1967,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,6229 123 | 122,1,plymouth satellite custom (sw),gas,std,four,sedan,fwd,front,93.7,167.3,63.8,50.8,1989,ohc,four,90,2bbl,2.97,3.23,9.4,68,5500,31,38,6692 124 | 123,1,plymouth fury gran sedan,gas,std,four,sedan,fwd,front,93.7,167.3,63.8,50.8,2191,ohc,four,98,2bbl,2.97,3.23,9.4,68,5500,31,38,7609 125 | 124,-1,plymouth valiant,gas,std,four,wagon,fwd,front,103.3,174.6,64.6,59.8,2535,ohc,four,122,2bbl,3.35,3.46,8.5,88,5000,24,30,8921 126 | 125,3,plymouth duster,gas,turbo,two,hatchback,rwd,front,95.9,173.2,66.3,50.2,2818,ohc,four,156,spdi,3.59,3.86,7,145,5000,19,24,12764 127 | 126,3,porsche macan,gas,std,two,hatchback,rwd,front,94.5,168.9,68.3,50.2,2778,ohc,four,151,mpfi,3.94,3.11,9.5,143,5500,19,27,22018 128 | 127,3,porcshce panamera,gas,std,two,hardtop,rwd,rear,89.5,168.9,65,51.6,2756,ohcf,six,194,mpfi,3.74,2.9,9.5,207,5900,17,25,32528 129 | 128,3,porsche cayenne,gas,std,two,hardtop,rwd,rear,89.5,168.9,65,51.6,2756,ohcf,six,194,mpfi,3.74,2.9,9.5,207,5900,17,25,34028 130 | 129,3,porsche boxter,gas,std,two,convertible,rwd,rear,89.5,168.9,65,51.6,2800,ohcf,six,194,mpfi,3.74,2.9,9.5,207,5900,17,25,37028 131 | 130,1,porsche cayenne,gas,std,two,hatchback,rwd,front,98.4,175.7,72.3,50.5,3366,dohcv,eight,203,mpfi,3.94,3.11,10,288,5750,17,28,31400.5 132 | 131,0,renault 12tl,gas,std,four,wagon,fwd,front,96.1,181.5,66.5,55.2,2579,ohc,four,132,mpfi,3.46,3.9,8.7,90,5100,23,31,9295 133 | 132,2,renault 5 gtl,gas,std,two,hatchback,fwd,front,96.1,176.8,66.6,50.5,2460,ohc,four,132,mpfi,3.46,3.9,8.7,90,5100,23,31,9895 134 | 133,3,saab 99e,gas,std,two,hatchback,fwd,front,99.1,186.6,66.5,56.1,2658,ohc,four,121,mpfi,3.54,3.07,9.31,110,5250,21,28,11850 135 | 134,2,saab 99le,gas,std,four,sedan,fwd,front,99.1,186.6,66.5,56.1,2695,ohc,four,121,mpfi,3.54,3.07,9.3,110,5250,21,28,12170 136 | 135,3,saab 99le,gas,std,two,hatchback,fwd,front,99.1,186.6,66.5,56.1,2707,ohc,four,121,mpfi,2.54,2.07,9.3,110,5250,21,28,15040 137 | 136,2,saab 99gle,gas,std,four,sedan,fwd,front,99.1,186.6,66.5,56.1,2758,ohc,four,121,mpfi,3.54,3.07,9.3,110,5250,21,28,15510 138 | 137,3,saab 99gle,gas,turbo,two,hatchback,fwd,front,99.1,186.6,66.5,56.1,2808,dohc,four,121,mpfi,3.54,3.07,9,160,5500,19,26,18150 139 | 138,2,saab 99e,gas,turbo,four,sedan,fwd,front,99.1,186.6,66.5,56.1,2847,dohc,four,121,mpfi,3.54,3.07,9,160,5500,19,26,18620 140 | 139,2,subaru,gas,std,two,hatchback,fwd,front,93.7,156.9,63.4,53.7,2050,ohcf,four,97,2bbl,3.62,2.36,9,69,4900,31,36,5118 141 | 140,2,subaru dl,gas,std,two,hatchback,fwd,front,93.7,157.9,63.6,53.7,2120,ohcf,four,108,2bbl,3.62,2.64,8.7,73,4400,26,31,7053 142 | 141,2,subaru dl,gas,std,two,hatchback,4wd,front,93.3,157.3,63.8,55.7,2240,ohcf,four,108,2bbl,3.62,2.64,8.7,73,4400,26,31,7603 143 | 142,0,subaru,gas,std,four,sedan,fwd,front,97.2,172,65.4,52.5,2145,ohcf,four,108,2bbl,3.62,2.64,9.5,82,4800,32,37,7126 144 | 143,0,subaru brz,gas,std,four,sedan,fwd,front,97.2,172,65.4,52.5,2190,ohcf,four,108,2bbl,3.62,2.64,9.5,82,4400,28,33,7775 145 | 144,0,subaru baja,gas,std,four,sedan,fwd,front,97.2,172,65.4,52.5,2340,ohcf,four,108,mpfi,3.62,2.64,9,94,5200,26,32,9960 146 | 145,0,subaru r1,gas,std,four,sedan,4wd,front,97,172,65.4,54.3,2385,ohcf,four,108,2bbl,3.62,2.64,9,82,4800,24,25,9233 147 | 146,0,subaru r2,gas,turbo,four,sedan,4wd,front,97,172,65.4,54.3,2510,ohcf,four,108,mpfi,3.62,2.64,7.7,111,4800,24,29,11259 148 | 147,0,subaru trezia,gas,std,four,wagon,fwd,front,97,173.5,65.4,53,2290,ohcf,four,108,2bbl,3.62,2.64,9,82,4800,28,32,7463 149 | 148,0,subaru tribeca,gas,std,four,wagon,fwd,front,97,173.5,65.4,53,2455,ohcf,four,108,mpfi,3.62,2.64,9,94,5200,25,31,10198 150 | 149,0,subaru dl,gas,std,four,wagon,4wd,front,96.9,173.6,65.4,54.9,2420,ohcf,four,108,2bbl,3.62,2.64,9,82,4800,23,29,8013 151 | 150,0,subaru dl,gas,turbo,four,wagon,4wd,front,96.9,173.6,65.4,54.9,2650,ohcf,four,108,mpfi,3.62,2.64,7.7,111,4800,23,23,11694 152 | 151,1,toyota corona mark ii,gas,std,two,hatchback,fwd,front,95.7,158.7,63.6,54.5,1985,ohc,four,92,2bbl,3.05,3.03,9,62,4800,35,39,5348 153 | 152,1,toyota corona,gas,std,two,hatchback,fwd,front,95.7,158.7,63.6,54.5,2040,ohc,four,92,2bbl,3.05,3.03,9,62,4800,31,38,6338 154 | 153,1,toyota corolla 1200,gas,std,four,hatchback,fwd,front,95.7,158.7,63.6,54.5,2015,ohc,four,92,2bbl,3.05,3.03,9,62,4800,31,38,6488 155 | 154,0,toyota corona hardtop,gas,std,four,wagon,fwd,front,95.7,169.7,63.6,59.1,2280,ohc,four,92,2bbl,3.05,3.03,9,62,4800,31,37,6918 156 | 155,0,toyota corolla 1600 (sw),gas,std,four,wagon,4wd,front,95.7,169.7,63.6,59.1,2290,ohc,four,92,2bbl,3.05,3.03,9,62,4800,27,32,7898 157 | 156,0,toyota carina,gas,std,four,wagon,4wd,front,95.7,169.7,63.6,59.1,3110,ohc,four,92,2bbl,3.05,3.03,9,62,4800,27,32,8778 158 | 157,0,toyota mark ii,gas,std,four,sedan,fwd,front,95.7,166.3,64.4,53,2081,ohc,four,98,2bbl,3.19,3.03,9,70,4800,30,37,6938 159 | 158,0,toyota corolla 1200,gas,std,four,hatchback,fwd,front,95.7,166.3,64.4,52.8,2109,ohc,four,98,2bbl,3.19,3.03,9,70,4800,30,37,7198 160 | 159,0,toyota corona,diesel,std,four,sedan,fwd,front,95.7,166.3,64.4,53,2275,ohc,four,110,idi,3.27,3.35,22.5,56,4500,34,36,7898 161 | 160,0,toyota corolla,diesel,std,four,hatchback,fwd,front,95.7,166.3,64.4,52.8,2275,ohc,four,110,idi,3.27,3.35,22.5,56,4500,38,47,7788 162 | 161,0,toyota corona,gas,std,four,sedan,fwd,front,95.7,166.3,64.4,53,2094,ohc,four,98,2bbl,3.19,3.03,9,70,4800,38,47,7738 163 | 162,0,toyota corolla,gas,std,four,hatchback,fwd,front,95.7,166.3,64.4,52.8,2122,ohc,four,98,2bbl,3.19,3.03,9,70,4800,28,34,8358 164 | 163,0,toyota mark ii,gas,std,four,sedan,fwd,front,95.7,166.3,64.4,52.8,2140,ohc,four,98,2bbl,3.19,3.03,9,70,4800,28,34,9258 165 | 164,1,toyota corolla liftback,gas,std,two,sedan,rwd,front,94.5,168.7,64,52.6,2169,ohc,four,98,2bbl,3.19,3.03,9,70,4800,29,34,8058 166 | 165,1,toyota corona,gas,std,two,hatchback,rwd,front,94.5,168.7,64,52.6,2204,ohc,four,98,2bbl,3.19,3.03,9,70,4800,29,34,8238 167 | 166,1,toyota celica gt liftback,gas,std,two,sedan,rwd,front,94.5,168.7,64,52.6,2265,dohc,four,98,mpfi,3.24,3.08,9.4,112,6600,26,29,9298 168 | 167,1,toyota corolla tercel,gas,std,two,hatchback,rwd,front,94.5,168.7,64,52.6,2300,dohc,four,98,mpfi,3.24,3.08,9.4,112,6600,26,29,9538 169 | 168,2,toyota corona liftback,gas,std,two,hardtop,rwd,front,98.4,176.2,65.6,52,2540,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,8449 170 | 169,2,toyota corolla,gas,std,two,hardtop,rwd,front,98.4,176.2,65.6,52,2536,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,9639 171 | 170,2,toyota starlet,gas,std,two,hatchback,rwd,front,98.4,176.2,65.6,52,2551,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,9989 172 | 171,2,toyota tercel,gas,std,two,hardtop,rwd,front,98.4,176.2,65.6,52,2679,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,11199 173 | 172,2,toyota corolla,gas,std,two,hatchback,rwd,front,98.4,176.2,65.6,52,2714,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,11549 174 | 173,2,toyota cressida,gas,std,two,convertible,rwd,front,98.4,176.2,65.6,53,2975,ohc,four,146,mpfi,3.62,3.5,9.3,116,4800,24,30,17669 175 | 174,-1,toyota corolla,gas,std,four,sedan,fwd,front,102.4,175.6,66.5,54.9,2326,ohc,four,122,mpfi,3.31,3.54,8.7,92,4200,29,34,8948 176 | 175,-1,toyota celica gt,diesel,turbo,four,sedan,fwd,front,102.4,175.6,66.5,54.9,2480,ohc,four,110,idi,3.27,3.35,22.5,73,4500,30,33,10698 177 | 176,-1,toyota corona,gas,std,four,hatchback,fwd,front,102.4,175.6,66.5,53.9,2414,ohc,four,122,mpfi,3.31,3.54,8.7,92,4200,27,32,9988 178 | 177,-1,toyota corolla,gas,std,four,sedan,fwd,front,102.4,175.6,66.5,54.9,2414,ohc,four,122,mpfi,3.31,3.54,8.7,92,4200,27,32,10898 179 | 178,-1,toyota mark ii,gas,std,four,hatchback,fwd,front,102.4,175.6,66.5,53.9,2458,ohc,four,122,mpfi,3.31,3.54,8.7,92,4200,27,32,11248 180 | 179,3,toyota corolla liftback,gas,std,two,hatchback,rwd,front,102.9,183.5,67.7,52,2976,dohc,six,171,mpfi,3.27,3.35,9.3,161,5200,20,24,16558 181 | 180,3,toyota corona,gas,std,two,hatchback,rwd,front,102.9,183.5,67.7,52,3016,dohc,six,171,mpfi,3.27,3.35,9.3,161,5200,19,24,15998 182 | 181,-1,toyota starlet,gas,std,four,sedan,rwd,front,104.5,187.8,66.5,54.1,3131,dohc,six,171,mpfi,3.27,3.35,9.2,156,5200,20,24,15690 183 | 182,-1,toyouta tercel,gas,std,four,wagon,rwd,front,104.5,187.8,66.5,54.1,3151,dohc,six,161,mpfi,3.27,3.35,9.2,156,5200,19,24,15750 184 | 183,2,vokswagen rabbit,diesel,std,two,sedan,fwd,front,97.3,171.7,65.5,55.7,2261,ohc,four,97,idi,3.01,3.4,23,52,4800,37,46,7775 185 | 184,2,volkswagen 1131 deluxe sedan,gas,std,two,sedan,fwd,front,97.3,171.7,65.5,55.7,2209,ohc,four,109,mpfi,3.19,3.4,9,85,5250,27,34,7975 186 | 185,2,volkswagen model 111,diesel,std,four,sedan,fwd,front,97.3,171.7,65.5,55.7,2264,ohc,four,97,idi,3.01,3.4,23,52,4800,37,46,7995 187 | 186,2,volkswagen type 3,gas,std,four,sedan,fwd,front,97.3,171.7,65.5,55.7,2212,ohc,four,109,mpfi,3.19,3.4,9,85,5250,27,34,8195 188 | 187,2,volkswagen 411 (sw),gas,std,four,sedan,fwd,front,97.3,171.7,65.5,55.7,2275,ohc,four,109,mpfi,3.19,3.4,9,85,5250,27,34,8495 189 | 188,2,volkswagen super beetle,diesel,turbo,four,sedan,fwd,front,97.3,171.7,65.5,55.7,2319,ohc,four,97,idi,3.01,3.4,23,68,4500,37,42,9495 190 | 189,2,volkswagen dasher,gas,std,four,sedan,fwd,front,97.3,171.7,65.5,55.7,2300,ohc,four,109,mpfi,3.19,3.4,10,100,5500,26,32,9995 191 | 190,3,vw dasher,gas,std,two,convertible,fwd,front,94.5,159.3,64.2,55.6,2254,ohc,four,109,mpfi,3.19,3.4,8.5,90,5500,24,29,11595 192 | 191,3,vw rabbit,gas,std,two,hatchback,fwd,front,94.5,165.7,64,51.4,2221,ohc,four,109,mpfi,3.19,3.4,8.5,90,5500,24,29,9980 193 | 192,0,volkswagen rabbit,gas,std,four,sedan,fwd,front,100.4,180.2,66.9,55.1,2661,ohc,five,136,mpfi,3.19,3.4,8.5,110,5500,19,24,13295 194 | 193,0,volkswagen rabbit custom,diesel,turbo,four,sedan,fwd,front,100.4,180.2,66.9,55.1,2579,ohc,four,97,idi,3.01,3.4,23,68,4500,33,38,13845 195 | 194,0,volkswagen dasher,gas,std,four,wagon,fwd,front,100.4,183.1,66.9,55.1,2563,ohc,four,109,mpfi,3.19,3.4,9,88,5500,25,31,12290 196 | 195,-2,volvo 145e (sw),gas,std,four,sedan,rwd,front,104.3,188.8,67.2,56.2,2912,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,23,28,12940 197 | 196,-1,volvo 144ea,gas,std,four,wagon,rwd,front,104.3,188.8,67.2,57.5,3034,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,23,28,13415 198 | 197,-2,volvo 244dl,gas,std,four,sedan,rwd,front,104.3,188.8,67.2,56.2,2935,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,24,28,15985 199 | 198,-1,volvo 245,gas,std,four,wagon,rwd,front,104.3,188.8,67.2,57.5,3042,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,24,28,16515 200 | 199,-2,volvo 264gl,gas,turbo,four,sedan,rwd,front,104.3,188.8,67.2,56.2,3045,ohc,four,130,mpfi,3.62,3.15,7.5,162,5100,17,22,18420 201 | 200,-1,volvo diesel,gas,turbo,four,wagon,rwd,front,104.3,188.8,67.2,57.5,3157,ohc,four,130,mpfi,3.62,3.15,7.5,162,5100,17,22,18950 202 | 201,-1,volvo 145e (sw),gas,std,four,sedan,rwd,front,109.1,188.8,68.9,55.5,2952,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,23,28,16845 203 | 202,-1,volvo 144ea,gas,turbo,four,sedan,rwd,front,109.1,188.8,68.8,55.5,3049,ohc,four,141,mpfi,3.78,3.15,8.7,160,5300,19,25,19045 204 | 203,-1,volvo 244dl,gas,std,four,sedan,rwd,front,109.1,188.8,68.9,55.5,3012,ohcv,six,173,mpfi,3.58,2.87,8.8,134,5500,18,23,21485 205 | 204,-1,volvo 246,diesel,turbo,four,sedan,rwd,front,109.1,188.8,68.9,55.5,3217,ohc,six,145,idi,3.01,3.4,23,106,4800,26,27,22470 206 | 205,-1,volvo 264gl,gas,turbo,four,sedan,rwd,front,109.1,188.8,68.9,55.5,3062,ohc,four,141,mpfi,3.78,3.15,9.5,114,5400,19,25,22625 207 | -------------------------------------------------------------------------------- /7. Model Selection Part 1/Case 1_ Model Creation_CrossValidation-Linear-Regression/CrossValidation_Linear Regression/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/7. Model Selection Part 1/Case 1_ Model Creation_CrossValidation-Linear-Regression/CrossValidation_Linear Regression/cv.png -------------------------------------------------------------------------------- /7. Model Selection Part 1/Case 1_ Model Creation_CrossValidation-Linear-Regression/CrossValidation_Linear Regression/grid_search_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/7. Model Selection Part 1/Case 1_ Model Creation_CrossValidation-Linear-Regression/CrossValidation_Linear Regression/grid_search_image.png -------------------------------------------------------------------------------- /7. Model Selection Part 1/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/7. Model Selection Part 1/Thumbs.db -------------------------------------------------------------------------------- /8. NaiveBayes/NaiveBayes/Mushroom Subset.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/8. NaiveBayes/NaiveBayes/Mushroom Subset.xlsx -------------------------------------------------------------------------------- /8. NaiveBayes/NaiveBayes/example_train1.csv: -------------------------------------------------------------------------------- 1 | Document,Class 2 | Teclov is a great educational institution.,education 3 | Educational greatness depends on ethics,education 4 | A story of great ethics and educational greatness,education 5 | Sholey is a great cinema,cinema 6 | good movie depends on good story,cinema -------------------------------------------------------------------------------- /IMPORTANT NOTE.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Machine-Learning-with-Real-World-Projects/38858bdd580b641780e2f0f2e1593981719ea833/IMPORTANT NOTE.docx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Packt 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Machine-Learning-with-Real-World-Projects 2 | Code Repository for Machine Learning with Real World Projects, Published by Packt 3 | --------------------------------------------------------------------------------