knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "70%"
)

fika

Lifecycle: experimental Travis build status

The fika package is designed to easily connect people from within a group and (potentially) suggest a topic to kick off the conversation. It's goal is to help connect people.

What is a Fika?

A fika is Swedish tradition that is similiar to a coffee break. But a Fika is much much more than having a coffee. It is a social phenomenon, a legitimate reason to set aside a moment for quality time. But don't take if from me, learn more from the official Swedish website.

This approach probably doesn't meet the traditional definition of a fika, but hey the goal is to help people interact.

Installation

You can install fika from Github with the devtools package.

``` {r, eval = FALSE} library(devtools)

devtools::install_github("mleary/fika")

## Example

```r
library(fika)

fika::topics[1:3] 

fika::topic_add(fika::topics[1:3], "Favorite restaurant in your town and why?")

dat <- data.frame(
  name = c("Steve", "Kathy", "Tim", "Terry", "Erin", "Emily", "Gail", "Robin", "Denny", "Marge"))

fika::create_groups(dat, min_group_size = 3)


mleary/fika documentation built on March 29, 2020, 12:59 a.m.