Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test of a fix for showing raw references for links #28

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 44 additions & 44 deletions website/prosess.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,44 @@ suppressMessages(library(knitr))
suppressMessages(library(dplyr))
suppressMessages(library(kableExtra))

# Read in data
dt <- read.csv("../data/katalogdata.csv")

# Add columns for language and new names
dt["Språk"] <- stringr::word(dt$keyword)[1]
dt["Språk"] <- ifelse(dt["Språk"] == "rfunc", "R", "Python")

dt$Funksjon = kableExtra::cell_spec(dt$func, link = dt$url, new_tab = T)
dt$Pakke <- dt$pack
dt$Navn <- dt$navn
dt$Beskrivelse <- dt$description

# Select columns for table
dt <- dt[, c("Funksjon", "Pakke", "Navn", "Språk", "Beskrivelse", "keyword")]
# Create main table
create_table <- function(){
# Read in data
dt <- read.csv("../data/katalogdata.csv")

# Add columns for language and new names
dt["Språk"] <- stringr::word(dt$keyword)[1]
dt["Språk"] <- ifelse(dt["Språk"] == "rfunc", "R", "Python")

# Add column for combination of function name and link
dt$Funksjon <- sprintf('<a href="%s">%s</a>', dt$url, dt$func)
dt$Pakke <- sprintf('<a href="%s">%s</a>',dt$pack_url, dt$pack)

dt$Navn <- dt$navn
dt$Beskrivelse <- dt$description

# Select columns for table
dt <- dt[, c("Funksjon", "Pakke", "Navn", "Språk", "Beskrivelse", "keyword")]
}
dt <- create_table()

# Function for filtering and formatting tables
create_keyword_table <- function(dt, keywords){
matches <- sapply(keywords, function(k) grepl(k, dt$keyword, ignore.case = T))

# Combine matches across keywords (any keyword matches)
row_matches <- rowSums(matches) > 0

# Get table rows
dt_filtered <- dt[row_matches, -match("keyword", names(dt))]

row.names(dt_filtered) <- NULL

return(kable(dt_filtered, escape = F, allign="lllcl", format = "html") %>%
kable_styling() %>%
column_spec(1, extra_css = "white-space: nowrap;") %>%
column_spec(2, extra_css = "white-space: nowrap;"))
}

```

Expand Down Expand Up @@ -67,33 +91,21 @@ Ingen funksjoner enda.
## *5.3 Kontrollere og validere*

```{r}
# filter for dataediterings functions
dt_kon <- dt[grepl("kontrollere", dt$keyword) | grepl("5.3", dt$keyword), -match("keyword", names(dt))]
row.names(dt_kon) <- NULL
kable(dt_kon, escape = F, allign="lllcl") %>%
kable_styling()
create_keyword_table(dt, c("kontrollere", "5.3"))
```


## *5.4 Editere og imputere*
```{r}
# filter for dataediterings functions
dt_kon <- dt[grepl("imputere", dt$keyword) | grepl("5.4", dt$keyword), -match("keyword", names(dt))]
row.names(dt_kon) <- NULL
kable(dt_kon, escape = F, allign="lllcl") %>%
kable_styling()
create_keyword_table(dt, c("imputere", "5.4"))
```

## *5.5 Avlede nye variabler*
Ingen funksjoner enda

## *5.6 Beregne vekter*
```{r}
# filter for dataediterings functions
dt_kon <- dt[grepl("vektberegning", dt$keyword) | grepl("5.6", dt$keyword), -match("keyword", names(dt))]
row.names(dt_kon) <- NULL
kable(dt_kon, escape = F, allign="lllcl") %>%
kable_styling()
create_keyword_table(dt, c("vektberegning", "5.6"))
```

## *5.7 Beregne aggregater*
Expand All @@ -108,33 +120,21 @@ Ingen funksjoner enda
:::{.panel-tabset}
## *6.1 Utarbeid produktutkast*
```{r}
# filter for dataediterings functions
dt_sesong <- dt[grepl("6.1", dt$keyword), -match("keyword", names(dt))]
row.names(dt_sesong) <- NULL
kable(dt_sesong, escape = F, allign="lllcl") %>%
kable_styling()
create_keyword_table(dt, c("6.1"))
```


## *6.2 Kvalitetssikre produkter*
```{r}
# filter for dataediterings functions
dt_kon <- dt[grepl("6.2", dt$keyword), -match("keyword", names(dt))]
row.names(dt_kon) <- NULL
kable(dt_kon, escape = F, allign="lllcl") %>%
kable_styling()
create_keyword_table(dt, c("6.2"))
```

## *6.3 Tolke og forklarer produkter*
Ingen funksjoner enda.

## *6.4 Gjennomføre avslørings kontroll*
```{r}
# filter for dataediterings functions
dt_kon <- dt[grepl("6.4", dt$keyword), -match("keyword", names(dt))]
row.names(dt_kon) <- NULL
kable(dt_kon, escape = F, allign="lllcl") %>%
kable_styling()
create_keyword_table(dt, c("6.4"))
```

## *6.5 Ferdigstille produkter*
Expand Down
Loading