Skip to content

Commit b8c0000

Browse files
staredclaude
andcommitted
Clean up and reorganize R libraries list
- Removed packages that are part of tidyverse (tibble, httr, jsonlite) - Removed ragg graphics device package - Reordered libraries: tidyverse first, then core packages, then extensions - Improved descriptions to be more action-oriented and helpful - Better logical grouping: data science core → visualization → time series 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent af9348a commit b8c0000

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

src/components/LibrarySelector.vue

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,14 @@ const emit = defineEmits<{
1515
const isOpen = ref(false)
1616
1717
const availableLibraries = [
18-
{ name: 'ggplot2', description: 'Grammar of graphics' },
19-
{ name: 'dplyr', description: 'Data manipulation' },
20-
{ name: 'ggrepel', description: 'Repel text labels' },
21-
{ name: 'tidyr', description: 'Tidy messy data' },
22-
{ name: 'tibble', description: 'Modern data frames' },
23-
{ name: 'httr', description: 'HTTP client' },
24-
{ name: 'jsonlite', description: 'JSON parser' },
25-
{ name: 'ggthemes', description: 'Extra themes for ggplot2' },
26-
{ name: 'ragg', description: 'AGG graphics device' },
27-
{ name: 'zoo', description: 'Time series infrastructure' },
28-
{ name: 'lubridate', description: 'Date/time handling' },
29-
{ name: 'tidyverse', description: 'Collection of R packages' }
18+
{ name: 'tidyverse', description: 'Complete data science toolkit' },
19+
{ name: 'ggplot2', description: 'Create elegant data visualizations' },
20+
{ name: 'dplyr', description: 'Fast data manipulation with verbs' },
21+
{ name: 'tidyr', description: 'Reshape and tidy messy data' },
22+
{ name: 'ggrepel', description: 'Automatically position text labels' },
23+
{ name: 'ggthemes', description: 'Professional themes & color palettes' },
24+
{ name: 'lubridate', description: 'Work with dates and times easily' },
25+
{ name: 'zoo', description: 'Handle irregular time series data' }
3026
]
3127
3228
const installedCount = computed(() => props.installedLibraries.size)

0 commit comments

Comments
 (0)