python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
What is the purpose of "r" before "..." in DataFrames.jl
I noticed people using r"..". What is it for? thanks
siebenstein
Votes: 0
Answers: 2
Function is only performed for the last iteration in a while loop
I have a program that analyzes fish behavior and categorizes it, giving each behavior a number between 1-80. Then, my code groups the frames in which their behaviors took place for at least 50 seconds...
Chris
Votes: 0
Answers: 1
Find mean of counts within groups
I have a dataframe that looks like this:
library(tidyverse)
x <- tibble(
batch = rep(c(1,2), each=10),
exp_id = c(rep('a',3),rep('b',2),rep('c',5),rep('d',6),rep('e',4))
)
I can run the...
Adam_G
Votes: 0
Answers: 2
How to refer to non-standard column names in DataFrames.jl
I have a data table containing some columns that have spaces in their names. How I can reference these columns by name (e.g. Column 1) if I want to select just that column of the dataframe? I tried da...
siebenstein
Votes: 0
Answers: 1