cross table formation

plz help to creat table by using R
I am unable to create table from my data base
Any one can help me

Hi Rina, welcome back, let's start with something simple and work with it to understand what you need,

try running this code:

data(mtcars)

library(flextable)
library(dplyr)

mtcars %>%
  select(carb, cyl) %>%
  group_by(carb, cyl) %>%
  summarise(counter = n()) %>%
  flextable()

image

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.