Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
R
 
 
man
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

yesno

lifecycle R build status Codecov test coverage License: GPL2 Tinyverse status CRAN status CRAN downloads

Introduction

Provides two functions.

The first, yesno(), asks a custom yes-no question with three variable responses.

The order and phrasing of the possible responses varies randomly to ensure the user consciously chooses (as opposed to automatically types their response).

The second, yesno2(), ask a yes-no question with two custom responses.

Demonstration

yesno("Do you like ", R.Version()$nickname ,"?")
Do you like Bug in Your Hair?
1: Definitely
2: No way
3: No

Selection: 1
[1] TRUE

yesno("Do you like ", R.Version()$nickname ,"?")
Do you like Bug in Your Hair?
1: No way
2: Uhhhh... Maybe?
3: I agree

Selection: 2
[1] FALSE

> yesno2("Do you like this question?", yes = "I really do")
Do you like this question?
1: I really do
2: No

Selection: 1
[1] TRUE

Installation

To install the latest release from CRAN

install.packages("yesno")

To install the developmental version from GitHub

# install.packages("remotes")
remotes::install_github("poissonconsulting/yesno")

Contribution

Please report any issues.

Pull requests are always welcome.

Code of Conduct

Please note that the yesno project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

About

An R package to ask Yes-No questions with variable or custom responses

Topics

Resources

Packages

No packages published
You can’t perform that action at this time.