housing-library-5509


Namehousing-library-5509 JSON
Version 0.1 PyPI version JSON
download
home_page
SummarySample code for coding practice
upload_time2023-11-02 09:21:40
maintainer
docs_urlNone
author
requires_python>=3.11
license
keywords housing data training
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Median housing value prediction

The housing data can be downloaded from https://raw.githubusercontent.com/ageron/handson-ml/master/. The script has codes to download the data. We have modelled the median house value on given housing data. 

The following techniques have been used: 

 - Linear regression
 - Decision Tree
 - Random Forest

## Steps performed
 - We prepare and clean the data. We check and impute for missing values.
 - Features are generated and the variables are checked for correlation.
 - Multiple sampling techinuqies are evaluated. The data set is split into train and test.
 - All the above said modelling techniques are tried and evaluated. The final metric used to evaluate is mean squared error.

## To excute the script
 - Create conda environment
 - Install necessary packages

```python
conda activate mle-dev
conda env export --name mle-dev >> env.yml
python nonstandardcode.py
```

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "housing-library-5509",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": "",
    "keywords": "housing,data training",
    "author": "",
    "author_email": "naveenaanil <naveena.anil@tigeranalytics.com>",
    "download_url": "https://files.pythonhosted.org/packages/12/99/12a8831e58ba348a603b74ecffacce24829cd32d4b832258886eac42da8c/housing_library_5509-0.1.tar.gz",
    "platform": null,
    "description": "# Median housing value prediction\n\nThe housing data can be downloaded from https://raw.githubusercontent.com/ageron/handson-ml/master/. The script has codes to download the data. We have modelled the median house value on given housing data. \n\nThe following techniques have been used: \n\n - Linear regression\n - Decision Tree\n - Random Forest\n\n## Steps performed\n - We prepare and clean the data. We check and impute for missing values.\n - Features are generated and the variables are checked for correlation.\n - Multiple sampling techinuqies are evaluated. The data set is split into train and test.\n - All the above said modelling techniques are tried and evaluated. The final metric used to evaluate is mean squared error.\n\n## To excute the script\n - Create conda environment\n - Install necessary packages\n\n```python\nconda activate mle-dev\nconda env export --name mle-dev >> env.yml\npython nonstandardcode.py\n```\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Sample code for coding practice",
    "version": "0.1",
    "project_urls": {
        "Homepage": "https://github.com/naveenaanil/mle-training"
    },
    "split_keywords": [
        "housing",
        "data training"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2cc0c741ffe36a9518da5adbd8799089eef2b95473f205af3c805e8aae3d1382",
                "md5": "ae15c48b186ac278afce6795cc7bfff0",
                "sha256": "1fc730f7579477dc62f11b2c0000b3cad2a76601651e87513c364a9598190506"
            },
            "downloads": -1,
            "filename": "housing_library_5509-0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ae15c48b186ac278afce6795cc7bfff0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11",
            "size": 6351,
            "upload_time": "2023-11-02T09:21:38",
            "upload_time_iso_8601": "2023-11-02T09:21:38.843722Z",
            "url": "https://files.pythonhosted.org/packages/2c/c0/c741ffe36a9518da5adbd8799089eef2b95473f205af3c805e8aae3d1382/housing_library_5509-0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "129912a8831e58ba348a603b74ecffacce24829cd32d4b832258886eac42da8c",
                "md5": "8d869c371d5bd533dc4476a0be7a8c73",
                "sha256": "2a794c4efa6f9d87ca7c219d5ade8621c0dde966033f1fea44cd6471842c3356"
            },
            "downloads": -1,
            "filename": "housing_library_5509-0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "8d869c371d5bd533dc4476a0be7a8c73",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11",
            "size": 5444,
            "upload_time": "2023-11-02T09:21:40",
            "upload_time_iso_8601": "2023-11-02T09:21:40.140403Z",
            "url": "https://files.pythonhosted.org/packages/12/99/12a8831e58ba348a603b74ecffacce24829cd32d4b832258886eac42da8c/housing_library_5509-0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-02 09:21:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "naveenaanil",
    "github_project": "mle-training",
    "github_not_found": true,
    "lcname": "housing-library-5509"
}
        
Elapsed time: 3.39279s