diff --git a/.gitignore b/.gitignore index 480c45b..e7b904b 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,6 @@ logs !.env.example .wrangler + +# Localflare generated files +.localflare/ diff --git a/content/projects/data-visualisation.md b/content/projects/data-visualisation.md index 7e1a4fa..8c2c112 100644 --- a/content/projects/data-visualisation.md +++ b/content/projects/data-visualisation.md @@ -14,6 +14,10 @@ tags: icon: i-ph-chart-bar-duotone --- +::warning +The project is currently in progress, and more details will be added as development continues. +:: + This project involves creating an interactive data visualization application using R and R Shiny. The goal is to develop dynamic and explorable visualizations that allow users to interact with the data in meaningful ways. ## 🛠️ Technologies & Tools @@ -23,5 +27,26 @@ This project involves creating an interactive data visualization application usi - **[ggplot2](https://ggplot2.tidyverse.org)**: A powerful R package for creating static and dynamic visualizations using the Grammar of Graphics. - **[dplyr](https://dplyr.tidyverse.org)**: An R package for data manipulation, providing a consistent set of verbs to help you solve common data manipulation challenges. - **[tidyr](https://tidyr.tidyverse.org)**: An R package for tidying data, making it easier to work with and visualize. +- **[tidyverse](https://www.tidyverse.org)**: A collection of R packages designed for data science that share an underlying design philosophy, grammar, and data structures. +- **[sf](https://r-spatial.github.io/sf/)**: An R package for working with simple features, providing support for spatial data manipulation and analysis. +- **[rnaturalearth](https://docs.ropensci.org/rnaturalearth/)**: An R package that provides easy access to natural earth map data for creating geographical visualizations. +- **[rnaturalearthdata](https://github.com/ropensci/rnaturalearthdata)**: Companion package to rnaturalearth containing large natural earth datasets. +- **[knitr](https://yihui.org/knitr/)**: An R package for dynamic report generation, enabling the integration of code and text. +- **[kableExtra](https://haozhu233.github.io/kableExtra/)**: An R package for customizing tables and enhancing their visual presentation. +- **[gridExtra](https://cran.r-project.org/web/packages/gridExtra/)**: An R package for arranging multiple grid-based plots on a single page. +- **[moments](https://cran.r-project.org/web/packages/moments/)**: An R package for computing moments, skewness, kurtosis and related statistics. +- **[factoextra](http://www.sthda.com/english/rpkgs/factoextra/)**: An R package for multivariate data analysis and visualization, including PCA and clustering methods. +- **[shinydashboard](https://rstudio.github.io/shinydashboard/)**: An R package for creating dashboards with Shiny. +- **[leaflet](https://rstudio.github.io/leaflet/)**: An R package for creating interactive maps using the Leaflet JavaScript library. +- **[plotly](https://plotly.com/r/)**: An R package for creating interactive visualizations with the Plotly library. +- **[RColorBrewer](https://cran.r-project.org/web/packages/RColorBrewer/)**: An R package providing color palettes for maps and other graphics. +- **[DT](https://rstudio.github.io/DT/)**: An R package for creating interactive data tables. -The project is currently in progress, and more details will be added as development continues. \ No newline at end of file +## 📚 Resources + +You can find the code here: [Data Visualisation](https://go.arthurdanjou.fr/dataviz) + +## 📄 Detailed Report + + \ No newline at end of file diff --git a/worker-configuration.d.ts b/worker-configuration.d.ts index b75bc0e..77af577 100644 --- a/worker-configuration.d.ts +++ b/worker-configuration.d.ts @@ -1,6 +1,6 @@ /* eslint-disable */ -// Generated by Wrangler by running `wrangler types` (hash: 730a20d40c88c8f7167cb4afae90a541) -// Runtime types generated with workerd@1.20251217.0 2025-12-13 nodejs_compat +// Generated by Wrangler by running `wrangler types` (hash: 373e9a05bf207b93549ab53665d07e4b) +// Runtime types generated with workerd@1.20251210.0 2025-12-13 nodejs_compat declare namespace Cloudflare { interface Env { CACHE: KVNamespace; @@ -13,6 +13,9 @@ declare namespace Cloudflare { NUXT_WAKATIME_OS: string; NUXT_WAKATIME_USER_ID: string; NUXT_STATUS_PAGE: string; + NUXT_HUB_CLOUDFLARE_ACCOUNT_ID: string; + NUXT_HUB_CLOUDFLARE_API_TOKEN: string; + NUXT_HUB_CLOUDFLARE_CACHE_NAMESPACE_ID: string; DB: D1Database; ASSETS: Fetcher; } @@ -22,7 +25,7 @@ type StringifyValues> = { [Binding in keyof EnvType]: EnvType[Binding] extends string ? EnvType[Binding] : string; }; declare namespace NodeJS { - interface ProcessEnv extends StringifyValues> {} + interface ProcessEnv extends StringifyValues> {} } // Begin runtime types @@ -8605,7 +8608,7 @@ type AIGatewayHeaders = { [key: string]: string | number | boolean | object; }; type AIGatewayUniversalRequest = { - provider: AIGatewayProviders | string; + provider: AIGatewayProviders | string; // eslint-disable-line endpoint: string; headers: Partial; query: unknown; @@ -8621,7 +8624,7 @@ declare abstract class AiGateway { gateway?: UniversalGatewayOptions; extraHeaders?: object; }): Promise; - getUrl(provider?: AIGatewayProviders | string): Promise; + getUrl(provider?: AIGatewayProviders | string): Promise; // eslint-disable-line } interface AutoRAGInternalError extends Error { }