Questions tagged [expss]

expss package provides tabulation functions with support for 'SPSS'-style labels, multiple / nested banners, weights, multiple-response variables and significance testing.

expss package provides tabulation functions with support for 'SPSS'-style labels, multiple / nested banners, weights, multiple-response variables and significance testing.

147 questions
0
votes
0 answers

expss R set_caption() not outputting to Excel

Yesterdays print output to Excel script you sent me basically working well. One issue though. I use set_caption() a lot as my clients want the full question wording above each table [the reference to the variable label isn't enough]. When I use…
MarkWebb
  • 59
  • 4
0
votes
1 answer

expss - Exporting many tables to MS Excel

I have read up on this in the article "expss - Tables with labels in R". Using the example supplied I can export 1 table to Excel. But I want to export many tables, all run at the same time. Can someone give me some pointers on how to export many…
MarkWebb
  • 59
  • 4
0
votes
1 answer

Expss labels are they accessible to ggplot title?

I wish to add titles to ggplot from Expss variable labels. The Expss package creates a new data type with variable labels and value labels (with underlying numbers). Is there some way of accessing the variable label assigned by referencing the…
CK7
  • 229
  • 1
  • 11
0
votes
0 answers

Top 2 boxES and bottom 2 boxes netting in R using expss package

How to provide top 2 boxes and bottom 2 box netting in R using Expss package? How to create data tables with Question Text, netting, Mean, Median with stubs? Please find the example tables from this link. Here is the sample tables which i wanted to…
Ram Verma
  • 11
  • 3
0
votes
1 answer

Changing Variable Labels in 'ctree' plot

I'm struggling to try to make a CI tree from the 'party' package in R look presentable. So far this is what I have, in terms of cleaning the tree up. current version of tree What I would like to do is change the variable names on each individual…
Kaitlin
  • 85
  • 2
  • 9
0
votes
1 answer

Table Formatting -Numeric,Decimal,Percentage

I need to show the % symbol after the value like 5%,10% as well as the Decimal values for mean and sd library(expss) xltable=EDat %>% calc(list( cro_cpct (A1A,total()) cro_mean_sd_n (N_A1A,…
Divya
  • 47
  • 7
0
votes
0 answers

Creating New Variables in R

I am using library(haven) library(expss) These Two Packages to create Tables using R. I use the Following Syntax to create a New Variables df=compute(df, { recode (A1A,4:5~1,3~2,1:2~3) %into% a1 }) It ran Properly there are no issue so…
Divya
  • 47
  • 7
0
votes
1 answer

Grid Table Format in R

I am using Expss package to create Tables in R. I am have 5 Statements each statement Have 5 brands. 5 Statements are in 5 consecutive variables like a1,a2,a3,a4,a5 Can i have table in grid format like the following? enter image description here
Divya
  • 47
  • 7
0
votes
1 answer

Give Mode In Table in expss package

I am using expss package for analysis in R. I use cro_mean_sd_n() to give the mean and standard deviation. Can I call another function to find the mode? And other possibilities mean, median, mode, sum, N in a single table.
Divya
  • 47
  • 7
0
votes
1 answer

Row label using expss package

Is it possible to repeat labels on each row such that the output of below code should look alike: instead of: wherein the desired output should contain the labels on each row instead of first row only. library("expss") data(mtcars) mtcars =…
nikki
  • 239
  • 1
  • 12
-1
votes
1 answer

Add label with names of the variables using expss

I have a data frame with 383 variables. Because the names of the variables are long and self-explanatory, I would like to add these names to the labels of variables, then in a second step (already successfully done), I would rename variables for…
1 2 3
9
10