Skip to content

Commit

Permalink
adding small isp and graph
Browse files Browse the repository at this point in the history
  • Loading branch information
defuneste committed May 3, 2024
1 parent 5298a62 commit 68a79e2
Showing 1 changed file with 46 additions and 12 deletions.
58 changes: 46 additions & 12 deletions isp_eda.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -337,29 +337,63 @@ sprintf("FRN with more than 500000 locations: %s", nrow(frn_desc[frn_desc$cnt_l

If we filter them out (removing 110 cases):


::: {.panel-tabset}

## 100 000
```{r}
frn <- frn_desc[frn_desc$cnt_locations >= 10 & frn_desc$cnt_locations <= 500000,]
location_filter <- 100000
frn <- frn_desc[frn_desc$cnt_locations >= 10 & frn_desc$cnt_locations <= location_filter ,]
# dim(frn_desc)
# dim(frn)
hist(frn$cnt_locations)
hist(frn$cnt_locations, col = 2,
main = sprintf("Less than %s", location_filter), xlab = "count locations")
frn$n_states <- lengths(strsplit(gsub("\\{|\\}", "", frn$states), ","))
```

## 10 000
```{r}
location_filter <- 10000
some test:
frn <- frn_desc[frn_desc$cnt_locations >= 10 & frn_desc$cnt_locations <= location_filter ,]
# dim(frn_desc)
# dim(frn)
```{r}
#| label: tbl-datatable
#| tbl-cap: "datatable"
DT::datatable(iris)
hist(frn$cnt_locations, col = 2,
main = sprintf("Less than %s", location_filter), xlab = "count locations")
frn$n_states <- lengths(strsplit(gsub("\\{|\\}", "", frn$states), ","))
```


```{r}
#| label: tbl-datatable2
#| tbl-cap: "datatable2"
table_with_options(iris)
```
:::

List of ISP that the Broadband team that are good reference of small provider:

| Name | FRN | Locations |
| --- | --- | --- |
| Newport Utilities, TN | 0027152438 |15383 |
| SandyNet, OR | 0004119376 | 4439|
| ECFiber, VT| 0027379676 | 22926 |
| Maple Broadband, VT| 0032366692 | 315|
| Uplink|0026218602| 1611|
| Black Bear Fiber|0025132648|1583|
| QCOL|0019663095|5610|
| Salsgiver|0011167079|29941|
| All Points Broadband|0023524705|107803|
| Marquette-Adams Telephone co-op |0003774023|130783 |
| USI fiber |||
| Scott county telephone co | 0002069862|7829|
| PANGAEA |0016202236| 8410|
| Blue Mountain Networks |0005450507|310013|

Side notes

Newport Utilities = NUconnect

SandyNet, OR = City of Sandy, OB

Blue Mountain Networks = Blue Ridge Mountain Electric Membership Corporation

0 comments on commit 68a79e2

Please sign in to comment.