Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
28 views

I have a dataset populated from an API call to Splunk. The dataset contains the following: time destip destport transport 2025-09-17 22:03:09 172.16.5.1 53 UDP 2025-09-17 22:03:10 172.16.5.1 53 UDP ...
Jhowel's user avatar
  • 61
0 votes
1 answer
34 views

I have two categorical variables, Student and CourseType, and one continuous variable, Units. I want a table that sums up the units for each pair of Student/CourseType. Like this: Required Elective ...
Dr. Sarah C.'s user avatar
0 votes
3 answers
96 views

I want to replace the custom etable default standard error note with one of my own. I am working with library(fixest) model1 <- feols(mpg ~ hp + drat + wt|cyl, data=mtcars) etable(model1, ...
YouLocalRUser's user avatar
-1 votes
1 answer
73 views

I want to have a textbox with the following logic: Meaning, some text and the dots until reaching a predetermined width and a number. I am aware that since I am not using a monospaced character the ...
Patrick's user avatar
  • 2,623
2 votes
1 answer
84 views

I have a vector 10,000 numbers long with a skewed distribution and extreme values. When I call base R's summary() function, certain values display as 0 when they are not actually 0. From my actual ...
datadon's user avatar
  • 23
0 votes
2 answers
55 views

I am trying to run ANOVA for multiple outcomes selected with grep(). Below is close to what I have, but this doesn't work, of course. It seems like there is an elegant and efficient way of doing this ...
brainupgraded's user avatar
-1 votes
2 answers
124 views

This must be simple, but I can't find guidance how to accomplish it. I've got a very simple (sample below), with a date variable and a temperature variable. The output I want is a data frame by date ...
DanM's user avatar
  • 355
1 vote
1 answer
76 views

Is there a R package that give me summary statistics of a numeric variable which include the percentage of missing values? I have tried the built-in summary, Hmisc describe and psych describe, but non ...
robertspierre's user avatar
0 votes
2 answers
47 views

I have a data frame with columns year, category, and value. I would like to plot this data in Power BI as follows: For each category separately, plot the sum of "value" by year. In addition, ...
Chris J's user avatar
  • 43
1 vote
1 answer
69 views

I am working with NSCH data for the first time in R. I found the following resource, which has been enormously helpful (thank you!). https://github.com/ajdamico/asdfree/blob/master/nsch.Rmd I followed ...
Blair Burnette's user avatar
1 vote
1 answer
83 views

I have data with vital signs multiple timepoints (0H, 4H, 8H etc) for each measure (SYSBP, DIABP etc). The data is organised in long format as follows data <- structure(list(SUBJID = c(1, 1, 1, 1, ...
Roman Maksvytis's user avatar
0 votes
2 answers
73 views

I'm trying to use the tbl_summary() function from the gtsummary package to summarize survey data. However, I'm finding it challenging to deal with numeric columns that contain placeholder values. For ...
Reiko Okamoto's user avatar
0 votes
1 answer
179 views

My apologies if this question is a duplicate or asked somewhere already. I like to create summary tables with this format. 1) Discrete variables : n/N (%) 2a) Continuous variables : mean (SD); N 2b)...
Science11's user avatar
  • 883
0 votes
1 answer
305 views

In our Jira boards, we want to be able to filter FE and BE tickets by using the Quick filters. The tickets have a prefix of: "FE: (title)" or "BE: (title)". My 2 queries are: ...
Bub's user avatar
  • 27
0 votes
1 answer
207 views

I'm trying to compare two paired samples from 4-period crossover bioequivalence study. My target variable is TMAX (but it may be any other which fits for this test). There are no problems with my code ...
Roman Maksvytis's user avatar
1 vote
1 answer
118 views

I have trained a glm as follows: fitGlm = smf.glm( listOfInModelFeatures, family=sm.families.Binomial(),data=train, freq_weights = train['sampleWeight']).fit() The results looks good: ...
Giampaolo Levorato's user avatar
-1 votes
1 answer
41 views

I am trying to create a summary table with only N and %s formatted like this. data("mtcars") am (N [%]) 0 19 [59%] 1 13 [41%] gear (N [%]) 3 15 [46%] 4 ...
King Frazier's user avatar
0 votes
1 answer
50 views

I have single band 764 weekly raster files from 2009 to present. Using these files, I want to make seasonal exploratory data analysis (EDA) according to corresponding years. I need to know how I can ...
Farinz's user avatar
  • 1
1 vote
0 answers
146 views

I'm putting together multiple estimations into one etable() table. When I do a single estimation using summary() , I get the individual coefficient p-value and the weights used. Yet when I do a single ...
Sam's user avatar
  • 13
1 vote
1 answer
36 views

I have an object called resultados ,a list, which is a result from a cch function. applied to set a model that was run in a loop to iterate for a list of biomarkers (111 elements). I would like to ...
Javier Hernando's user avatar
1 vote
0 answers
89 views

I would like to create summary table using two "by" factor (age category and gender) i would like to obtain this table. Any ideas? I tried data %>% select(Sex, Age, Height, Weight, BMI, ...
Tamara Barusová's user avatar
1 vote
1 answer
509 views

I would like to write a custom rendering funtcion that shows summary statistics weighted by sampling weights using the table1 package in R. The problem here is that in addition to the vector with the ...
elebuzz's user avatar
  • 28
0 votes
1 answer
86 views

trying CSS nesting feature with pseudo element ::marker but found it strange that this nesting does not work details { padding: 4px; & summary { color: red; & ::...
xkeshav's user avatar
  • 54.2k
0 votes
1 answer
31 views

I have data on Percentage Change from Baseline for two groups, and I've encountered an outlier. To visualize the data, I created a boxplot and added the number of observations at the bottom using ...
Ph.D.Student's user avatar
0 votes
4 answers
141 views

I have the Excel data shown below. Column A has the ID, columns B and C have segments of values associated with the ID, and Columns D and E are general descriptions of the ID (associated with the ID, ...
DiplomatX's user avatar
1 vote
0 answers
569 views

I would like to modify our the GHE workflow summary with some action's results using GITHUB_STEP_SUMMARY Here is how it is organized: From the web UI or gh CLI, we launch a generic workflow which ...
Umaiki's user avatar
  • 364
1 vote
1 answer
294 views

In a gtsummary table, I want to show the p-value for the difference in several variables between group A and group B, corrected for age and sex. I found here that I can use the ANCOVA test in ...
Evy's user avatar
  • 25
0 votes
1 answer
69 views

If this is my dataframe Factors Group n Average Max Min Calcium Above 1599 0.412 42.872 0.017 Calcium Below 1040 0.011 0.017 ...
Sundown Brownbear's user avatar
0 votes
1 answer
62 views

I used the function gc() when the RAM looks like it is going RED and the message that I received is Mb Ncells 284.8 and Vcells 459.9. What does that mean, especially after I just saved 8GB of memory ...
user23037257's user avatar
1 vote
2 answers
50 views

Consider the following example: library(dplyr) df <- data.frame( Cat = c ("A","B","C","B","C","A",&...
iGada's user avatar
  • 643
0 votes
0 answers
97 views

I've run a dbRDA on a large community abundance dataset in Vegan, and have realised I'm getting different values for the total variance explained by my constrained axis. If I use summary(dbrda) I get ...
japes's user avatar
  • 1
1 vote
1 answer
1k views

I am using the following code, but am receiving the 'array arguments to sumifs are of different sizes' error code : =SUMIFS(Expenses!I:I,$A$30,Expenses!B:B,B1,Expenses!H:H) Any helpful ideas on how ...
Megan Elizabeth's user avatar
0 votes
4 answers
440 views

I was wondering if it's possible to look up values based on sheet names and certain columns inside those sheets? I was trying to wrap my head around that idea, but couldn't actually find a solution, ...
MrXPs's user avatar
  • 3
-1 votes
1 answer
388 views

I have this raw data in this format: I want to add a column (or more than one if it’s not possible to find a single formula to complete the job) that matches each open trade by instrument and ...
Andrea's user avatar
  • 25
0 votes
0 answers
669 views

I am new to gtsummary package, but when I try to change summary statistics in the tbl_summary function, it gives me error messages, I tried to use the code with different data frames, but the same ...
NEA's user avatar
  • 55
-2 votes
1 answer
143 views

Dear Stackoverflow Community, I am trying to self-teach myself R and data analysis using the textbook "Békés, Gábor. Data Analysis for Business, Economics, and Policy" (https://gabors-data-...
shei003's user avatar
-1 votes
2 answers
116 views

Sample code: options(contrasts = c("contr.sum", "contr.poly")) require(datasets); data(InsectSprays) model1 <- lm(count ~ spray, data = InsectSprays) summary(model1) When I ...
littletennis's user avatar
1 vote
2 answers
124 views

After finding a regression prediction in lm I want to return only last two lines of the summary. What would be the best function to use? my_model_lm(y ~ x1 + x2 + x3, data = [data]) summary_result <...
Gwyrion's user avatar
  • 13
1 vote
1 answer
301 views

I am running into a small issue that i can't figure my head around. I developed a model that I test using lmer. Full code: #importing library library(tidyverse) library(lmerTest) library(car) library(...
ThijsZ's user avatar
  • 25
1 vote
0 answers
131 views

I'm trying to visualize a summary table as a tree in R. Actually I saw there are some plots related to decision tree algorithms, but I don't need a machine learning model. Is it possible to have a &...
Marco Ballerini's user avatar
-1 votes
1 answer
61 views

I have a test plan that runs with 100 threads, and many APIs are repeated in the test flow. I want the Summary CSV report to display the average response time, as seen in the UI. Currently i shows for ...
mayuri's user avatar
  • 129
-1 votes
2 answers
510 views

I'm writing this question according to another problem I have in R studio. I have a very large dataset that consists of movement data (ACC) for birds and I have multiple rows per individuals (each row ...
Skyk's user avatar
  • 27
1 vote
1 answer
162 views

I am summarizing documents using TextRank pipeline in SpaCy. I need to summarize both long and short documents. Can you suggest a good approach to choose the right parameter of limit_phrases? this is ...
Ire00's user avatar
  • 141
0 votes
1 answer
87 views

I have a dataset with multiple rows of data for each subject. This dataset is very long, and each person has dozens of rows of each session they are in. I want to collapse this dataset into a more ...
lwe's user avatar
  • 401
4 votes
1 answer
2k views

I wish to see the summary of deviance residuals when I run summary on a GLM in R. I believe this should be shown by default, however it doesn't appear for me. I am aware that I can use something like ...
Nauru's user avatar
  • 43
-1 votes
1 answer
59 views

create table test_txn ( ttid bigint(20) unsigned NOT NULL AUTO_INCREMENT, `PROFILEID` int(11) NOT NULL, `MERCHANT_TXN_ID` varchar(32) NOT NULL, `TXN_STATUS` int(4) NOT NULL, `...
chaitanya's user avatar
0 votes
1 answer
83 views

i am trying to get the descriptive statistics from multiple variables between two groups. so far the only way i could find out how to use so is using the group by then summarize function. but it is ...
sebastian.mendoza's user avatar
0 votes
2 answers
53 views

I have multiple files which is formatted like: > Test1.txt NameNo Team etc 1: AS001-A. 8 773 2: AS002-S. 7 631 3: AS003-G. 8 970 > Test2.txt ...
Ollie's user avatar
  • 157
0 votes
2 answers
48 views

I built a barplot in R where each bar represents the cummulative rainfall for a given month in a year. However, the bars themselves don't have labels, and my boss is really emphasizing the fact that ...
Noah Measells's user avatar
0 votes
1 answer
280 views

I'm trying without sucess to center or position in other ways the text in the summary row of my Syncfusion SfDataGrid in WPF. I have the following structure: <syncfusion:SfDataGrid ... ...
Rafael Leonardi's user avatar

1
2 3 4 5
26