Posts by Mariane Campos • 141 points
9 posts
-
0
votes1
answer28
viewsQ: Create a conditional to print the media and standard deviation on the screen
I would like to create a conditional for average and standard deviation of a given group. I usually do this by dividing subsets, but as there are many categories I thought would be better with a…
-
1
votes1
answer54
viewsQ: Change x scale to range from 0 to 100 but showing decimal variations
Hello, I need to plot the decimal variations on the x-axis and vary from 0 to 100 fevmt=c(91.9, 92.1, 92.3, 91.4, 91.8, 90.1, 91.8) a1 =c(91.9, 100) b1 =c(92.1, 100) c1 = c(92.3, 100) d1 =c (91.4,…
-
2
votes1
answer193
viewsQ: Change y-axis scale to show decimal differences on a bar graph
I’m filling a bar chart, the differences between the bars are 0.1 how do I move the axis so that these differences appear ? fvcmt = c(95.2, 95.3, 95.4, 95.1, 95.1, 94.8, 95.1) fevmt = c(91.9, 92.1,…
-
2
votes1
answer70
viewsQ: Chart with captions overlaid in R [without using ggplot2
Hello, my chart is getting some overlapping values, already tried to increase the chart not solved. library(RColorBrewer) #cores cor = brewer.pal(12, "BuPu") gen =c(1, 130, 2, 31, 1 ) labs_g =c(…
-
-2
votes3
answers952
viewsQ: How to filter a range of values?
Hello, I have the following vector cvfm_multr =c(-0.332674874454252, -0.571035468021242, -0.676476547114675, -0.205905929370678, -1.21249714617946, 0.121238932104978, 0.310664697843136,…
rasked Mariane Campos 141 -
1
votes1
answer133
viewsQ: error when importing . ODS in R
I’m trying to import a table. ods in R library(readODS) setwd("~/Documents/Mestrado/dissertacao") dados <- read_ods("teste.ods", col_names = T) however when loading the worksheet it does not…
-
2
votes1
answer526
viewsQ: Add error bar on graph in R
I’m trying to plot a graph but I’m not able to add the error bars with the function arrow. I don’t know what could be wrong with the code below: m12<-plot(tq1_mean~time ,type ="p", col = "red",…
-
5
votes1
answer3753
viewsQ: How to change the y-axis scale on a line chart
I’m trying to plot a graph where the points on the y-axis vary in decimal places but I couldn’t adjust the axis scale to vary in decimal places as well. t_mean = c(30.24, 30.73, 30.94, 31.97, 31.28,…
-
0
votes0
answers102
viewsQ: Turning a double variable into a factor
Hello, I’m trying to convert a variable of the type double in factor ppar$abor <- as.factor(ppar$abor) But I’m getting the following error: Error in `$<-.data.frame`(`*tmp*`, abor, value =…