Skip to content

Commit

Permalink
move reading in data to weblate dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
hturner committed Oct 11, 2024
1 parent adae4c2 commit 5f31f92
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
6 changes: 0 additions & 6 deletions weblate/Data_contains.R

This file was deleted.

9 changes: 8 additions & 1 deletion weblate/index.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,15 @@ library(jsonlite)
library(lubridate)
library(plotly, exclude = "style")
library(reactable)
library(readr)
library(reshape2)
source("Data_contains.R")
# Data sets
Language_Statistics_new <- read_csv("Language Statisitics/Language_Statistics_new.csv")
Library_Language_Statistics <- read_csv("Library Language Statistics/Library Language Statistics.csv")
Marked_for_Edit <- read_csv("Recent Changes/Marked for Edit.csv")
New_Translation <- read_csv("Recent Changes/New Translation.csv")
Statistics <- read_csv("User Statistics/Statistics.csv")
# Helper functions
compute_active <- function() {
active_count<-nrow(subset(Statistics,Active=="Active"))
total<-nrow(Statistics)
Expand Down

0 comments on commit 5f31f92

Please sign in to comment.