Learn R Programming

ethnobotanyR (version 0.1.5)

Radial_plot: Radial bar plot of use reports (UR) per species

Description

Creates a radial bar plot of use reports (UR) per species based on the `UR function`.

Usage

Radial_plot(data, analysis)

Arguments

data

is an ethnobotany data set with column 1 'informant' and 2 'sp_name' as row identifiers of informants and of species names respectively. The rest of the columns are the identified ethnobotany use categories. The data should be populated with counts of uses per person (should be 0 or 1 values).

analysis

is one of the quantitative ethnobotany functions from ethnobotanyR, i.e. ethnobotanyR::FCs.

Examples

Run this code
# NOT RUN {
#Use built-in ethnobotany data example and Frequency of Citation function FCs()
Radial_plot(ethnobotanydata, analysis = FCs)

#Generate random dataset of three informants uses for four species
eb_data <- data.frame(replicate(10,sample(0:1,20,rep=TRUE)))
names(eb_data) <- gsub(x = names(eb_data), pattern = "X", replacement = "Use_")  
eb_data$informant<-sample(c('User_1', 'User_2', 'User_3'), 20, replace=TRUE)
eb_data$sp_name<-sample(c('sp_1', 'sp_2', 'sp_3', 'sp_4'), 20, replace=TRUE)
Radial_plot(data = eb_data, analysis = FCs)

# }

Run the code above in your browser using DataLab