- Require Shiny 1.8.1. Adjustments related to icon-buttons were made to address a breaking change in Shiny 1.8.1
- Reverting changes that removed
req(input$dataset)
in different places
- Require shiny 1.8.0. This fixes a bug in the shiny 1.7 versions that caused issues with all radiant packages.
- Added
.groups
arguments as needed to avoid messages about grouping from dplyr
- Relabeled web app to "Radiant for R" to distinguish from "Radiant for Python"
- Addressed package documentation issue connected to a change in roxygen2
- Simplified and improved color assignment for discrete probability distributions in the probability calculator
- Improvements to screenshot feature. Navigation bar is omitted and the image is adjusted to the length of the UI.
- Removed all references to
aes_string
which is being deprecated in ggplot soon - Code cleanup
- Fixed plot titles for Basics > Central Limit Theorem
- Added option to create screenshots of settings on a page. Approach is inspired by the snapper package by @yonicd
- Fixed
is_empty
function clash withrlang
- Adjustments to work with the latest version of
shiny
andbootstrap4
Adjusted DESCRIPTION file by adding 'markdown' to the Suggests section. This addresses an issue in radiant.basics, similar to the issue linked below
radiant-rstats/radiant#157. This is issue originated with yihui/knitr#1864
- Minor adjustments in anticipation of dplyr 1.0.0
- Documentation updates to link to new video tutorials
- Use
patchwork
for grouping multiple plots together - Use
polycor::hetcor
to calculate correlations for a mix of numeric and categorical variables - Updated correlation plot that accommodates a mix of numeric and categorical variables
- Fix for sd estimate in
single_prop
andcompare_prop
functions - Add dimension labels to all tables in Basics > Cross-tabs
- Update action buttons that initiate calculations when one or more relevant inputs are changed. When, for example, a CLT simulation should be updated, a spinning "refresh" icon will be shown
- Allow fractions as input for the
Goodness of fit
andProbability calculator > Discrete
tools
- Summary statistics provided for single_mean, single_prop, compare_means, and compare_props are now consistent
n_missing
were not show correctly for compare_means and compare_props
- Fix for code generation from the probability calculator when the
distribution
type is set to binomial - Fix for input restoration from a state file for the probability calculator. For the value or probability inputs two sided values might be restored when only a one-sided input was previously specified
- Documentation updates (i.e., key functions for each tool)
- Improvements in
goodness
andprob_dics
to allow fractions in generated code sent to Report > rmd or Report > R - Improved checks for variables that show no variation
- Numerous small code changes to support enhanced auto-completion, tooltips, and annotations in shinyAce 0.4.1
- Flexible adjustment of level of jitter in
plot.correlation
- Support for variables of type
ts
- Various fixes to address (soft) deprecations in dplyr 0.8.0
- Option to pass additional arguments to
shiny::runApp
when starting radiant such as the port to use. For example, radiant.basics::radiant.basics("https://github.com/radiant-rstats/docs/raw/gh-pages/examples/demo-dvd-rnd.state.rda", port = 8080) - Catch settings where the number of levels in a comparison of means or proportions is the same as the number of rows in the data (e.g., grouping by a unique identifier)
- Show significant stars for
Compare means
andCompare proportions
even whenShow additional output
is not selected ci
in summary tablecompare_means
andcompare_props
should be margin of err (me
)- Option to use
Z-test
insingle_prop
- Load a state file on startup by providing a (relative) file path or a url
- Using
shinyFiles
to provide convenient access to data located on a server
- Various changes to the code to accommodate the use of
shiny::makeReactiveBinding
. The advantage is that the code generated for Report > Rmd and Report > R will no longer have to user_data
to store and access data. This means that code generated and used in the Radiant browser interface will be directly usable without the browser interface as well.
- Upload and download data using the Rstudio file browser. Allows using relative paths to files (e.g., data or images inside an Rstudio project)
- Variable selection in Summary tabs only to simplify Plot interface
- Fix for #43 where scatter plot was not shown for a dataset with less than 1,000 rows
- Format tables with thousand separator
- Added print method for return from
correlation
- Enhanced keyboard shortcuts
summary.single_prop
will not print row numbers- Added log.normal as an option in the probability calculator
- The correlation plot now has an option to select a sample of data for scatter plots (e.g., 1K, 5K, 10K, or All)
- Upgraded broom dependency to 0.4.3
- Upgraded dplyr dependency to 0.7.4
- Upgraded tidyr dependency to 0.7.2
- Fixed CI printing error for
compare_prop
- Applied
styler
to code - Long lines of code generated for Report > Rmd and Report > R will be wrapped to enhance readability
correlation
defaults to all variables if no value forvar
is provided- Renamed methods
summary.correlation_
andplot.correlation_
tosummary.correlation
andplot.correlation
- Added
tab
argument togoodness
andcross_tabs
so a table object can be passed directly - Documentation updates
- Scatter plots in Correlation > Plot are now based on 1,000 data points by default. Use Report > Rmd or Report > R to adjust (e.g.,
plot(result, n = -1)
)
- Fix for level ordering in goodness-of-fit expected-values plot
- Code clean-up and various minor fixes and improvements
- Show dataset name in output if dataframe passed directly to analysis function
- Scatter plots in Basics > Correlation > Plot now based on 1,000 data points by default. Add n = -1 to use all data points
- As an alternative to using the Estimate button to run a model you can now also use CTRL-enter or CMD-enter
- Use ALT-enter to put code into Report > Rmd or Report > R
- Documentation added on how to customize plots
- Fixed correlation dropdown. Correlations did not change when method was changed (thanks @Fiordmaster)
- Improved formatting for small negative values in Basics > Correlation
- Convert numeric bounds to integer in Basics > Probability calculator > Binomial to avoid warnings
- Use of *_each is deprecated