All Projects → Swechhya → Excelr

Swechhya / Excelr

Licence: other
An Interface to 'jExcel.js' Library

Programming Languages

javascript
184084 projects - #8 most used programming language
r
7636 projects

Projects that are alternatives of or similar to Excelr

Waiter
🕰️ Loading screens for Shiny
Stars: ✭ 325 (+206.6%)
Mutual labels:  hacktoberfest, shiny
Isee
R/shiny interface for interactive visualization of data in SummarizedExperiment objects
Stars: ✭ 155 (+46.23%)
Mutual labels:  hacktoberfest, shiny
Cicerone
🏛️ Give tours of your Shiny apps
Stars: ✭ 131 (+23.58%)
Mutual labels:  hacktoberfest, shiny
Golem
A Framework for Building Robust Shiny Apps
Stars: ✭ 530 (+400%)
Mutual labels:  hacktoberfest, shiny
Django Wiki
A wiki system with complex functionality for simple integration and a superb interface. Store your knowledge with style: Use django models.
Stars: ✭ 1,485 (+1300.94%)
Mutual labels:  hacktoberfest
Famous Bugs
Famous bugs fixed, problems solved and failures experienced in software history 🐛 🐝 🐜 🐞
Stars: ✭ 105 (-0.94%)
Mutual labels:  hacktoberfest
Vagrant Librarian Puppet
A Vagrant plugin to install Puppet modules using Librarian-Puppet.
Stars: ✭ 104 (-1.89%)
Mutual labels:  hacktoberfest
Larasupport
📦 Adds Laravel Packages Support to Lumen and Vendor Publish Artisan Command.
Stars: ✭ 104 (-1.89%)
Mutual labels:  hacktoberfest
Go Compression.github.io
The Hitchhiker's Guide to Compression
Stars: ✭ 106 (+0%)
Mutual labels:  hacktoberfest
Aixlib
A Modelica model library for building performance simulations
Stars: ✭ 104 (-1.89%)
Mutual labels:  hacktoberfest
Json Against Humanity
Finally, Cards Against Humanity as plain text and JSON.
Stars: ✭ 105 (-0.94%)
Mutual labels:  hacktoberfest
Markscribe
Your personal markdown scribe with template-engine and Git(Hub) & RSS powers 📜
Stars: ✭ 105 (-0.94%)
Mutual labels:  hacktoberfest
Collect
A Collections-only split from Laravel's Illuminate Support
Stars: ✭ 1,433 (+1251.89%)
Mutual labels:  hacktoberfest
Powershell
Development repository for the powershell cookbook
Stars: ✭ 104 (-1.89%)
Mutual labels:  hacktoberfest
Doc8
Style checker for sphinx (or other) rst documentation.
Stars: ✭ 105 (-0.94%)
Mutual labels:  hacktoberfest
Libmtev
Mount Everest Application Framework
Stars: ✭ 104 (-1.89%)
Mutual labels:  hacktoberfest
Lichter.io
My own website and CV
Stars: ✭ 105 (-0.94%)
Mutual labels:  hacktoberfest
Postinstall
💻 Bash Script to automate post-installation steps
Stars: ✭ 104 (-1.89%)
Mutual labels:  hacktoberfest
Laravel Cloudflare
Add Cloudflare ip addresses to trusted proxies for Laravel.
Stars: ✭ 105 (-0.94%)
Mutual labels:  hacktoberfest
Ant Design Draggable Modal
The Modal from Ant Design, draggable.
Stars: ✭ 105 (-0.94%)
Mutual labels:  hacktoberfest

excelR

version CRAN_Download_Badge Travis-CI Build Status AppVeyor Build Status codecov R Build and Checks

An R interface to jExcel library to create web-based interactive tables and spreadsheets compatible with 'Excel' or any other spreadsheet software.

Installation

To install the stable CRAN version:

install.packages('excelR')

To install the latest development version from GitHub:

library(devtools)
install_github('Swechhya/excelR')

Simple example

library(excelR)

 data = data.frame(Model = c('Mazda', 'Pegeout', 'Honda Fit', 'Honda CRV'),
                   Date=c('2006-01-01', '2005-01-01','2004-01-01', '2003-01-01' ),
                   Availability = c(TRUE, FALSE, TRUE, TRUE))

 columns = data.frame(title=c('Model', 'Date', 'Availability'),
                      width= c(300, 300, 300),
                      type=c('text', 'calendar', 'checkbox')) 

 excelTable(data=data, columns = columns)

excelTable

This package can be used in shiny

  library(shiny)
  library(excelR)

   shinyApp(
     ui = fluidPage(excelOutput("table")),
     server = function(input, output, session) {
       output$table <-
      renderExcel(excelTable(data = head(iris)))
      }
    )

Features:

  • Insert and delete rows and columns.
  • Excel formulas integration
  • Drag and drop columns
  • Resizable rows and columns
  • Merge rows and columns
  • Search
  • Pagination
  • Lazy loading
  • Native color picker
  • Data picker dropdown with autocomplete, multiple, and icons feature
  • Date picker
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].