Page not found
The page you requested could not be found. Try using the navigation or search to find what you're looking for or go to this site's home page.
├── docs ├── _includes │ ├── js │ │ └── custom.js │ ├── head_custom.html │ ├── title.html │ ├── head.html │ ├── nav.html │ └── vendor │ │ └── anchor_headings.html ├── Rakefile ├── _sass │ ├── overrides.scss │ ├── support │ │ ├── mixins │ │ │ ├── mixins.scss │ │ │ ├── _buttons.scss │ │ │ ├── _layout.scss │ │ │ └── _typography.scss │ │ ├── support.scss │ │ ├── _functions.scss │ │ └── _variables.scss │ ├── utilities │ │ ├── utilities.scss │ │ ├── _lists.scss │ │ ├── _typography.scss │ │ ├── _layout.scss │ │ ├── _spacing.scss │ │ └── _colors.scss │ ├── color_schemes │ │ └── dark.scss │ ├── labels.scss │ ├── typography.scss │ ├── tables.scss │ ├── base.scss │ ├── vendor │ │ └── normalize.scss │ │ │ ├── package.json │ │ │ ├── README.md │ │ │ └── normalize.scss │ ├── navigation.scss │ ├── buttons.scss │ ├── content.scss │ ├── custom │ │ └── custom.scss │ ├── search.scss │ ├── layout.scss │ └── code.scss ├── _layouts │ ├── about.html │ ├── home.html │ ├── page.html │ ├── post.html │ ├── table_wrappers.html │ ├── vendor │ │ └── compress.html │ └── default.html ├── .DS_Store ├── favicon.ico ├── favicon2.ico ├── docs │ ├── .DS_Store │ ├── reports │ │ ├── .DS_Store │ │ ├── EDA_files │ │ │ ├── EDA_13_1.png │ │ │ ├── EDA_25_1.png │ │ │ ├── EDA_28_0.png │ │ │ ├── EDA_32_1.png │ │ │ ├── EDA_34_0.png │ │ │ └── EDA_37_0.png │ │ ├── Model_Eval_files │ │ │ └── Model_Eval_2_2.png │ │ ├── index.md │ │ ├── Model_Eval.md │ │ └── EDA.md │ ├── deploy.md │ ├── model_timeline.html │ └── pipeline_runs.html ├── _site │ ├── favicon.ico │ ├── favicon2.ico │ ├── assets │ │ ├── images │ │ │ ├── just-the-docs.png │ │ │ └── search.svg │ │ └── js │ │ │ └── dark-mode-preview.js │ ├── docs │ │ ├── reports │ │ │ ├── EDA_files │ │ │ │ ├── EDA_13_1.png │ │ │ │ ├── EDA_25_1.png │ │ │ │ ├── EDA_28_0.png │ │ │ │ ├── EDA_32_1.png │ │ │ │ ├── EDA_34_0.png │ │ │ │ └── EDA_37_0.png │ │ │ ├── Model_Eval_files │ │ │ │ └── Model_Eval_2_2.png │ │ │ ├── index.html │ │ │ └── Model_Eval │ │ │ │ └── index.html │ │ ├── deploy │ │ │ └── index.html │ │ ├── pipeline_runs │ │ │ └── index.html │ │ └── model_timeline │ │ │ └── index.html │ ├── CODE_OF_CONDUCT.md │ ├── 404.html │ ├── index.html │ └── summary.html ├── Gemfile ├── assets │ ├── images │ │ ├── just-the-docs.png │ │ └── search.svg │ ├── js │ │ ├── search-data.json │ │ └── dark-mode-preview.js │ └── css │ │ ├── dark-mode-preview.scss │ │ └── just-the-docs.scss ├── script │ └── build ├── 404.html ├── bin │ └── just-the-docs ├── package.json ├── just-the-docs.gemspec ├── LICENSE.txt ├── lib │ └── tasks │ │ └── search.rake ├── index.md ├── _config.yml ├── README.md ├── CODE_OF_CONDUCT.md ├── summary.md └── Gemfile.lock ├── metadata ├── timeline.json ├── pipeline_runs.json └── model_card.md ├── .DS_Store ├── notebooks ├── datasets │ └── housing │ │ └── housing.tgz ├── Model_Eval_files │ └── Model_Eval_2_2.png └── images │ └── end_to_end_project │ ├── california.png │ ├── bad_visualization_plot.png │ └── california_housing_prices_plot.png ├── gh-pages.sh ├── .jekyll-cache └── Jekyll │ └── Cache │ ├── Jekyll--Converters--Markdown │ ├── 99 │ │ └── 917202e6adb09a1f93cdabe5cd869a38511e3adde35d29a2b6a76e0c19a952 │ └── 7e │ │ └── 1be421c794107814fdc87538130ad38d31a5514c8176cddeaeb728660a4d0c │ └── Jekyll--Cache │ └── b7 │ └── 9606fb3afea5bd1609ed40b622142f1c98125abcfe89a76a661b0e8e343910 ├── Pipfile ├── README.md └── requirements.txt /docs/_includes/js/custom.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metadata/timeline.json: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/_includes/head_custom.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metadata/pipeline_runs.json: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/Rakefile: -------------------------------------------------------------------------------- 1 | Dir.glob('lib/tasks/*.rake').each {|r| import r} 2 | -------------------------------------------------------------------------------- /docs/_sass/overrides.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Custom overrides from a user. 3 | // 4 | -------------------------------------------------------------------------------- /docs/_layouts/about.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /docs/_layouts/home.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /docs/_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /docs/_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/.DS_Store -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/favicon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/favicon2.ico -------------------------------------------------------------------------------- /docs/docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/docs/.DS_Store -------------------------------------------------------------------------------- /docs/_sass/support/mixins/mixins.scss: -------------------------------------------------------------------------------- 1 | @import "./layout"; 2 | @import "./buttons"; 3 | @import "./typography"; 4 | -------------------------------------------------------------------------------- /docs/_sass/support/support.scss: -------------------------------------------------------------------------------- 1 | @import "./variables"; 2 | @import "./functions"; 3 | @import "./mixins/mixins"; 4 | -------------------------------------------------------------------------------- /docs/_site/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/_site/favicon.ico -------------------------------------------------------------------------------- /docs/_site/favicon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/_site/favicon2.ico -------------------------------------------------------------------------------- /docs/docs/reports/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/docs/reports/.DS_Store -------------------------------------------------------------------------------- /docs/_includes/title.html: -------------------------------------------------------------------------------- 1 | {% if site.logo %} 2 |
3 | {% else %} 4 | {{ site.title }} 5 | {% endif %} 6 | -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | gem "github-pages", group: :jekyll_plugins 3 | gem 'jekyll-octicons' 4 | gem 'jekyll-relative-links' -------------------------------------------------------------------------------- /docs/assets/images/just-the-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/assets/images/just-the-docs.png -------------------------------------------------------------------------------- /docs/docs/reports/EDA_files/EDA_13_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/docs/reports/EDA_files/EDA_13_1.png -------------------------------------------------------------------------------- /docs/docs/reports/EDA_files/EDA_25_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/docs/reports/EDA_files/EDA_25_1.png -------------------------------------------------------------------------------- /docs/docs/reports/EDA_files/EDA_28_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/docs/reports/EDA_files/EDA_28_0.png -------------------------------------------------------------------------------- /docs/docs/reports/EDA_files/EDA_32_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/docs/reports/EDA_files/EDA_32_1.png -------------------------------------------------------------------------------- /docs/docs/reports/EDA_files/EDA_34_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/docs/reports/EDA_files/EDA_34_0.png -------------------------------------------------------------------------------- /docs/docs/reports/EDA_files/EDA_37_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/docs/reports/EDA_files/EDA_37_0.png -------------------------------------------------------------------------------- /notebooks/datasets/housing/housing.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/notebooks/datasets/housing/housing.tgz -------------------------------------------------------------------------------- /docs/_site/assets/images/just-the-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/_site/assets/images/just-the-docs.png -------------------------------------------------------------------------------- /docs/_sass/utilities/utilities.scss: -------------------------------------------------------------------------------- 1 | @import "./colors"; 2 | @import "./layout"; 3 | @import "./typography"; 4 | @import "./lists"; 5 | @import "./spacing"; 6 | -------------------------------------------------------------------------------- /notebooks/Model_Eval_files/Model_Eval_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/notebooks/Model_Eval_files/Model_Eval_2_2.png -------------------------------------------------------------------------------- /docs/_site/docs/reports/EDA_files/EDA_13_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/_site/docs/reports/EDA_files/EDA_13_1.png -------------------------------------------------------------------------------- /docs/_site/docs/reports/EDA_files/EDA_25_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/_site/docs/reports/EDA_files/EDA_25_1.png -------------------------------------------------------------------------------- /docs/_site/docs/reports/EDA_files/EDA_28_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/_site/docs/reports/EDA_files/EDA_28_0.png -------------------------------------------------------------------------------- /docs/_site/docs/reports/EDA_files/EDA_32_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/_site/docs/reports/EDA_files/EDA_32_1.png -------------------------------------------------------------------------------- /docs/_site/docs/reports/EDA_files/EDA_34_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/_site/docs/reports/EDA_files/EDA_34_0.png -------------------------------------------------------------------------------- /docs/_site/docs/reports/EDA_files/EDA_37_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/_site/docs/reports/EDA_files/EDA_37_0.png -------------------------------------------------------------------------------- /notebooks/images/end_to_end_project/california.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/notebooks/images/end_to_end_project/california.png -------------------------------------------------------------------------------- /docs/docs/reports/Model_Eval_files/Model_Eval_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/docs/reports/Model_Eval_files/Model_Eval_2_2.png -------------------------------------------------------------------------------- /docs/_site/docs/reports/Model_Eval_files/Model_Eval_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/docs/_site/docs/reports/Model_Eval_files/Model_Eval_2_2.png -------------------------------------------------------------------------------- /notebooks/images/end_to_end_project/bad_visualization_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/notebooks/images/end_to_end_project/bad_visualization_plot.png -------------------------------------------------------------------------------- /docs/script/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Packaging gem... \n" 4 | gem build just-the-docs.gemspec 5 | 6 | echo "Cleaning up... \n" 7 | git add *.gem 8 | git commit -m 'Bump just-the-docs gem package' 9 | -------------------------------------------------------------------------------- /notebooks/images/end_to_end_project/california_housing_prices_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machine-learning-apps/mlops-dashboard/HEAD/notebooks/images/end_to_end_project/california_housing_prices_plot.png -------------------------------------------------------------------------------- /docs/_sass/support/_functions.scss: -------------------------------------------------------------------------------- 1 | @function rem($size, $unit:"") { 2 | $remSize: $size / $root-font-size; 3 | 4 | @if ($unit == false) { 5 | @return #{$remSize}; 6 | } 7 | @else { 8 | @return #{$remSize}rem; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /docs/_layouts/table_wrappers.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: vendor/compress 3 | --- 4 | 5 | {% assign content_ = content | replace: 'The page you requested could not be found. Try using the navigation {% if site.search_enabled %}or search {% endif %}to find what you're looking for or go to this site's home page.
12 | -------------------------------------------------------------------------------- /docs/docs/reports/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: Reports 4 | has_children: true 5 | nav_order: 3 6 | --- 7 | 8 |Mockup / Illustrative
Mockup / Illustrative
Fork this project to run the model pipeline on your compute.
17 | 18 | 19 |Mockup / Illustrative
This dashboard renders information in your repo relevant to machine learning projects automatically by using GitHub Actions and GitHub Pages.
15 | Learn more 16 |Mockup / Illustrative
Mockup / Illustrative
Jan 2020
15 |25 | {% octicon git-commit %} 601423b 26 |
27 |41 | {% octicon git-branch %} demo-mlops-2 42 | 43 |
44 | (#34) 45 | 46 |2 days ago
50 |6 |
A modern, highly customizable, and responsive Jekyll theme for documentation with built-in search.
Easily hosted on GitHub Pages with few dependencies.
Compute a confusion matrix
4 | 5 |Normalized confusion matrix
6 | [[0.88173203 0.09765211 0.02061586]
7 | [0.1303451 0.83997974 0.02967516]
8 | [0.27873486 0.23896011 0.48230502]]
9 |
10 |
11 |
12 |
13 |
14 | <matplotlib.axes._subplots.AxesSubplot at 0x7f487d90af60>
15 | 
Using TensorFlow backend.
22 | issue_labeler.get_probabilities(body='Can someone please help me?',
25 | title='random stuff')
26 | {'bug': 0.12618249654769897,
29 | 'feature': 0.1929263472557068,
30 | 'question': 0.6808911561965942}
31 | issue_labeler.get_probabilities(body='It would be great to add a new button',
34 | title='requesting a button')
35 | {'bug': 0.019261939451098442,
38 | 'feature': 0.9305700659751892,
39 | 'question': 0.05016808584332466}
40 | issue_labeler.get_probabilities(body='It does` not work, I get bad errors',
43 | title='nothing works')
44 | {'bug': 0.9065071940422058,
47 | 'feature': 0.03202613815665245,
48 | 'question': 0.06146678701043129}
49 | Mockup / Illustrative
Mockup / Illustrative
The page you requested could not be found. Try using the navigation or search to find what you're looking for or go to this site's home page.
" %}{% assign _pres_after = "" %}{% if _pres.size != 0 %}{% if site.compress_html.blanklines %}{% assign _lines = _pres.last | split: _LINE_FEED %}{% capture _pres_after %}{% for _line in _lines %}{% assign _trimmed = _line | split: " " | join: " " %}{% if _trimmed != empty or forloop.last %}{% unless forloop.first %}{{ _LINE_FEED }}{% endunless %}{{ _line }}{% endif %}{% endfor %}{% endcapture %}{% else %}{% assign _pres_after = _pres.last | split: " " | join: " " %}{% endif %}{% endif %}{% capture _content %}{{ _content }}{% if _pre_before contains "" %}{% endif %}{% unless _pre_before contains "" and _pres.size == 1 %}{{ _pres_after }}{% endunless %}{% endcapture %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " | Step | Bytes |
| raw | {{ content | size }}{% if _profile_endings %} |
| endings | {{ _profile_endings }}{% endif %}{% if _profile_startings %} |
| startings | {{ _profile_startings }}{% endif %}{% if _profile_comments %} |
| comments | {{ _profile_comments }}{% endif %}{% if _profile_collapse %} |
| collapse | {{ _profile_collapse }}{% endif %}{% if _profile_clippings %} |
| clippings | {{ _profile_clippings }}{% endif %} |
Mockup / Illustrative
Fork this project to run the model pipeline on your compute.
Mockup / Illustrative
Reports are automatically rendered from Jupyter Notebooks located in the /notebooks directory of your repository. You can refresh these reports by commiting new or updated notebooks to the master branch of your repository.
Mockup / Illustrative
This dashboard renders information in your repo relevant to machine learning projects automatically by using GitHub Actions and GitHub Pages.
Learn moreSummary: uses the /metadata/summary.md file located your repo. This is meant to be a high level summary of your model. A recommended format for this is discussed in Model Cards for Model Reporting.
Reports: these pages automatically render Jupyter notebooks located in the /notebooks directory of your repo.
Model Timeline: this is a timeline view of relevant milestones for your ML project. This page is generated by /metadata/timeline.json in your repo, which is system generated 1.
Completed Pipeline Runs: This shows the most recent pipeline runs. This page is generated by /metadata/pipeline_runs.json in our repo, which is system generated 1.
Deploy: A click-to-deploy mechanism for others to run your training pipeline and serve your model on the infrastructure of your choice. This is under construction.
Mockup / Illustrative
Mockup / Illustrative
Compute a confusion matrix
Normalized confusion matrix
2 | [[0.88173203 0.09765211 0.02061586]
3 | [0.1303451 0.83997974 0.02967516]
4 | [0.27873486 0.23896011 0.48230502]]
5 |
6 |
7 |
8 |
9 |
10 | <matplotlib.axes._subplots.AxesSubplot at 0x7f487d90af60>
11 | 
Using TensorFlow backend.
12 | issue_labeler.get_probabilities(body='Can someone please help me?',
13 | title='random stuff')
14 | {'bug': 0.12618249654769897,
15 | 'feature': 0.1929263472557068,
16 | 'question': 0.6808911561965942}
17 | issue_labeler.get_probabilities(body='It would be great to add a new button',
18 | title='requesting a button')
19 | {'bug': 0.019261939451098442,
20 | 'feature': 0.9305700659751892,
21 | 'question': 0.05016808584332466}
22 | issue_labeler.get_probabilities(body='It does` not work, I get bad errors',
23 | title='nothing works')
24 | {'bug': 0.9065071940422058,
25 | 'feature': 0.03202613815665245,
26 | 'question': 0.06146678701043129}
27 | Mockup / Illustrative
Jan 2020
2 days ago
Mockup / Illustrative
Mockup / Illustrative
| 45 | | longitude | 46 |latitude | 47 |housing_median_age | 48 |total_rooms | 49 |total_bedrooms | 50 |population | 51 |households | 52 |median_income | 53 |median_house_value | 54 |ocean_proximity | 55 |
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 60 |-122.23 | 61 |37.88 | 62 |41.0 | 63 |880.0 | 64 |129.0 | 65 |322.0 | 66 |126.0 | 67 |8.3252 | 68 |452600.0 | 69 |NEAR BAY | 70 |
| 1 | 73 |-122.22 | 74 |37.86 | 75 |21.0 | 76 |7099.0 | 77 |1106.0 | 78 |2401.0 | 79 |1138.0 | 80 |8.3014 | 81 |358500.0 | 82 |NEAR BAY | 83 |
| 2 | 86 |-122.24 | 87 |37.85 | 88 |52.0 | 89 |1467.0 | 90 |190.0 | 91 |496.0 | 92 |177.0 | 93 |7.2574 | 94 |352100.0 | 95 |NEAR BAY | 96 |
| 3 | 99 |-122.25 | 100 |37.85 | 101 |52.0 | 102 |1274.0 | 103 |235.0 | 104 |558.0 | 105 |219.0 | 106 |5.6431 | 107 |341300.0 | 108 |NEAR BAY | 109 |
| 4 | 112 |-122.25 | 113 |37.85 | 114 |52.0 | 115 |1627.0 | 116 |280.0 | 117 |565.0 | 118 |259.0 | 119 |3.8462 | 120 |342200.0 | 121 |NEAR BAY | 122 |
| 5 | 125 |-122.25 | 126 |37.85 | 127 |52.0 | 128 |919.0 | 129 |213.0 | 130 |413.0 | 131 |193.0 | 132 |4.0368 | 133 |269700.0 | 134 |NEAR BAY | 135 |
| 6 | 138 |-122.25 | 139 |37.84 | 140 |52.0 | 141 |2535.0 | 142 |489.0 | 143 |1094.0 | 144 |514.0 | 145 |3.6591 | 146 |299200.0 | 147 |NEAR BAY | 148 |
| 7 | 151 |-122.25 | 152 |37.84 | 153 |52.0 | 154 |3104.0 | 155 |687.0 | 156 |1157.0 | 157 |647.0 | 158 |3.1200 | 159 |241400.0 | 160 |NEAR BAY | 161 |
| 8 | 164 |-122.26 | 165 |37.84 | 166 |42.0 | 167 |2555.0 | 168 |665.0 | 169 |1206.0 | 170 |595.0 | 171 |2.0804 | 172 |226700.0 | 173 |NEAR BAY | 174 |
| 9 | 177 |-122.25 | 178 |37.84 | 179 |52.0 | 180 |3549.0 | 181 |707.0 | 182 |1551.0 | 183 |714.0 | 184 |3.6912 | 185 |261100.0 | 186 |NEAR BAY | 187 |
| 215 | | longitude | 216 |latitude | 217 |housing_median_age | 218 |total_rooms | 219 |total_bedrooms | 220 |population | 221 |households | 222 |median_income | 223 |median_house_value | 224 |
|---|---|---|---|---|---|---|---|---|---|
| count | 229 |20640.000000 | 230 |20640.000000 | 231 |20640.000000 | 232 |20640.000000 | 233 |20433.000000 | 234 |20640.000000 | 235 |20640.000000 | 236 |20640.000000 | 237 |20640.000000 | 238 |
| mean | 241 |-119.569704 | 242 |35.631861 | 243 |28.639486 | 244 |2635.763081 | 245 |537.870553 | 246 |1425.476744 | 247 |499.539680 | 248 |3.870671 | 249 |206855.816909 | 250 |
| std | 253 |2.003532 | 254 |2.135952 | 255 |12.585558 | 256 |2181.615252 | 257 |421.385070 | 258 |1132.462122 | 259 |382.329753 | 260 |1.899822 | 261 |115395.615874 | 262 |
| min | 265 |-124.350000 | 266 |32.540000 | 267 |1.000000 | 268 |2.000000 | 269 |1.000000 | 270 |3.000000 | 271 |1.000000 | 272 |0.499900 | 273 |14999.000000 | 274 |
| 25% | 277 |-121.800000 | 278 |33.930000 | 279 |18.000000 | 280 |1447.750000 | 281 |296.000000 | 282 |787.000000 | 283 |280.000000 | 284 |2.563400 | 285 |119600.000000 | 286 |
| 50% | 289 |-118.490000 | 290 |34.260000 | 291 |29.000000 | 292 |2127.000000 | 293 |435.000000 | 294 |1166.000000 | 295 |409.000000 | 296 |3.534800 | 297 |179700.000000 | 298 |
| 75% | 301 |-118.010000 | 302 |37.710000 | 303 |37.000000 | 304 |3148.000000 | 305 |647.000000 | 306 |1725.000000 | 307 |605.000000 | 308 |4.743250 | 309 |264725.000000 | 310 |
| max | 313 |-114.310000 | 314 |41.950000 | 315 |52.000000 | 316 |39320.000000 | 317 |6445.000000 | 318 |35682.000000 | 319 |6082.000000 | 320 |15.000100 | 321 |500001.000000 | 322 |