{"id":13425873,"url":"https://github.com/Swechhya/excelR","last_synced_at":"2025-03-15T20:31:26.413Z","repository":{"id":35022004,"uuid":"194982911","full_name":"Swechhya/excelR","owner":"Swechhya","description":"An Interface to 'jExcel.js' Library","archived":false,"fork":false,"pushed_at":"2023-07-12T10:04:13.000Z","size":2456,"stargazers_count":153,"open_issues_count":29,"forks_count":20,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-03-15T11:05:02.246Z","etag":null,"topics":["hacktoberfest","r","shiny"],"latest_commit_sha":null,"homepage":"https://swechhya.github.io/excelR/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Swechhya.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2019-07-03T05:04:14.000Z","updated_at":"2025-01-30T23:35:41.000Z","dependencies_parsed_at":"2023-09-24T18:12:26.961Z","dependency_job_id":null,"html_url":"https://github.com/Swechhya/excelR","commit_stats":{"total_commits":244,"total_committers":7,"mean_commits":"34.857142857142854","dds":"0.21311475409836067","last_synced_commit":"b46f7d1b20a2bc3cb50bda73bedde53b54fe5772"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Swechhya%2FexcelR","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Swechhya%2FexcelR/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Swechhya%2FexcelR/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Swechhya%2FexcelR/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Swechhya","download_url":"https://codeload.github.com/Swechhya/excelR/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243719398,"owners_count":20336607,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hacktoberfest","r","shiny"],"created_at":"2024-07-31T00:01:20.970Z","updated_at":"2025-03-15T20:31:26.379Z","avatar_url":"https://github.com/Swechhya.png","language":"JavaScript","funding_links":[],"categories":["JavaScript","Tools","UI Components"],"sub_categories":["Integrations","Table"],"readme":"# excelR\n[![version](https://www.r-pkg.org/badges/version/excelR)](https://CRAN.R-project.org/package=excelR)\n[![CRAN_Download_Badge](https://cranlogs.r-pkg.org/badges/grand-total/excelR)](https://cran.r-project.org/package=excelR)\n[![Travis-CI Build Status](https://travis-ci.org/Swechhya/excelR.svg?branch=master)](https://travis-ci.org/Swechhya/excelR)\n[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/Swechhya/excelR?branch=master\u0026svg=true)](https://ci.appveyor.com/project/Swechhya/excelR)\n[![codecov](https://codecov.io/gh/Swechhya/excelR/branch/master/graph/badge.svg)](https://codecov.io/gh/Swechhya/excelR)\n![R Build and Checks](https://github.com/Swechhya/excelR/workflows/R%20Build%20and%20Checks/badge.svg?branch=master)\n\nAn R interface to [jExcel](https://bossanova.uk/jexcel/v3/) library to create web-based interactive tables and spreadsheets compatible with 'Excel' or any other spreadsheet software.\n\n## Installation\nTo install the stable CRAN version: \n```r\ninstall.packages('excelR')\n```\n\nTo install the latest development version from GitHub:\n```r\nlibrary(devtools)\ninstall_github('Swechhya/excelR')\n```\n\n## Simple example\n```r\nlibrary(excelR)\n\n data = data.frame(Model = c('Mazda', 'Pegeout', 'Honda Fit', 'Honda CRV'),\n                   Date=c('2006-01-01', '2005-01-01','2004-01-01', '2003-01-01' ),\n                   Availability = c(TRUE, FALSE, TRUE, TRUE))\n\n columns = data.frame(title=c('Model', 'Date', 'Availability'),\n                      width= c(300, 300, 300),\n                      type=c('text', 'calendar', 'checkbox')) \n\n excelTable(data=data, columns = columns)\n```\n\n![excelTable](inst/images/basic_example.png \"A simple example\")\n\nThis package can be used in `shiny`\n```r\n  library(shiny)\n  library(excelR)\n\n   shinyApp(\n     ui = fluidPage(excelOutput(\"table\")),\n     server = function(input, output, session) {\n       output$table \u003c-\n      renderExcel(excelTable(data = head(iris)))\n      }\n    )\n\n```\n\n## Features:\n- Insert and delete rows and columns.\n- Excel formulas integration\n- Drag and drop columns\n- Resizable rows and columns\n- Merge rows and columns\n- Search\n- Pagination\n- Lazy loading\n- Native color picker\n- Data picker dropdown with autocomplete, multiple, and icons feature\n- Date picker\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSwechhya%2FexcelR","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FSwechhya%2FexcelR","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSwechhya%2FexcelR/lists"}