Issue I have a box in my shiny application that has a button included within a shiny dashboard box like this: shiny::fluidRow( shinydashboard::box(title = “Intro Page”, “Some description…”, shiny::actionButton(inputId=’ab1′, label=”Learn More”, icon = icon(“th”)) ) ) I want to include
Continue readingTag: r
[SOLVED] Using do.call() to pass arguments from 2 different lists into a function with 2 parameters in R
Issue I have been struggling to implement do.call(). I have a function that I have to run many times to generate a series of different plots. Instead of inputting each argument, I want each pair of arguments to be accessed
Continue reading[SOLVED] R-markdown to create multiple word file parametrised from excel tab
Issue I have a table in Excel that looks like this: Country X Y US 01 A UK 02 B FR 03 C Using R (I imported the excel using "readxl" package) and Rmarkdown, I would like to create, for
Continue reading[SOLVED] Importing multiple online XLS files into R
Issue I am trying to imports multiple XSL files which are located on a website. These files represent data for different years, they have similar names and the only part of the url that changes ins the year at the
Continue reading[SOLVED] How to convert xls to xlsx using R
Issue I want to convert a bunch of xls files to xlsx in R so I can use the openxlsx package to overwrite in specific cells. Up until now, I’ve been changing the format manually by opening each xls file
Continue reading[SOLVED] Cannot save Excel file in Rstudio after binding data
Issue I am trying to save an Excel workbook from Rstudio, in which new data was added, the way I am saving it is with saveworkbook from openxlsx library, but it gives me the following error: Error in zip_internal(zipfile, files,
Continue reading[SOLVED] using R, how can I go through multiples tabs on an Excel file to extract some data and sent to dataframe?
Issue I have an Excel file which has multiple tabs, I would like to have a function where I can go tab by tab and extract the same column (it is always in the same position of every tab) and
Continue reading[SOLVED] How to group the content of a whole excel column?
Issue Good morning community, I wanted to ask about any proposals you have to solve the following problem I have with a dataset. It turns out, that I want that in the column "Municipio" of the image on the left,
Continue reading[SOLVED] How to combine multiple excel files into one using R
Issue As the title states. I have to download at least 30 excel files from an online database and it is a headache because I have to combine one by one , I would like to have a single excel
Continue reading[SOLVED] Is there a possibility to read ".xlw" files in R / Python
Issue I have several very, very old files of interest I’d like to work in R with. They are Excel 4 files, ".xlw" (back from the 90s). I cant convert them all manually to .xls or .xlsx files, they are
Continue reading