Package 'PolisheR'

Title: Interfacing 'NaileR' with 'Shiny'
Description: A very small package for more convenient use of 'NaileR'. You provide a data set containing a latent variable you want to understand. It generates a description and an interpretation of this latent variable using a Large Language Model. For perceptual data, it describes the stimuli used in the experiment.
Authors: Sébastien Lê [aut, cre]
Maintainer: Sébastien Lê <[email protected]>
License: GPL (>= 2)
Version: 1.0.0
Built: 2024-11-29 13:55:59 UTC
Source: CRAN

Help Index


Launch a Shiny app for analyzing Quantitative Descriptive Analysis data (QDA)

Description

This function launches a Shiny app for analyzing QDA data with the 'Nailer' package. The app allows users to explore and analyze their QDA dataset.

Usage

shiny_nail_qda(dataset)

Arguments

dataset

A data frame containing the data to be analyzed.

Value

This function does not return a value; it launches a Shiny app.

Examples

if(interactive()){
# Processing time is often longer than ten seconds
# because the function uses a large language model.

library(SensoMineR)
data(chocolates)
shiny_nail_qda(sensochoc)

}