Skip to content

Commit

Permalink
adding about frn
Browse files Browse the repository at this point in the history
  • Loading branch information
defuneste committed Apr 29, 2024
1 parent a2242e8 commit b880d51
Show file tree
Hide file tree
Showing 6 changed files with 4,183 additions and 0 deletions.
Binary file removed .DS_Store
Binary file not shown.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ _site/
.Rproj.user
.Rhistory
*.Rproj

.DS_Store
12 changes: 12 additions & 0 deletions FCC_provider_list.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,18 @@ A quick check indicate that all `Provider.ID` are 6 characters (hence the one wi
FRN_by_affiliations <- sapply(split(isp$FRN, isp$Affiliation), function(x) length(unique(x)))
FRN_by_affiliations.dat <- data.frame(Affiliations = names(FRN_by_affiliations),
count_frn = FRN_by_affiliations)
knitr::kable(table(FRN_by_affiliations.dat$count_frn))
```


Most of it are one for one.

# Data set with mail address and phone number

```{r}
#| label: address and phone
isp_contact <- read.csv("data/bb-provider_list.csv")
table_with_options(isp_contact)
```
Loading

0 comments on commit b880d51

Please sign in to comment.