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)
Can i set the limit of y axis which contains time data in Rstudio?
Hi i have a problem that occurs in R.
I can't handle the y - axis, which is hour : minute format.
here is the code sample.
library("data.table")
library("ggplot2") #load library
t...
rainbear
Votes: 0
Answers: 1
Problem for reading UTF-8 file with gtfstools
I'm trying to open a GTFS file that has UTF-8 encoding, but even though I changed my project's encoding in R to UTF-8, the characters are still truncated. The problem can be seen in the "stop_nam...
Igor
Votes: 0
Answers: 1
Wanting to subtract 1 from several specific columns in a dataframe
I am super new to R, and the many facets of coding language.
I have a set of data with many variables. I have a few columns (that are beside each other), where I need to subtract 1 from all values in ...
Cassidy Tomlinson
Votes: 0
Answers: 2
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