0
votes
2answers
36 views

R: If the last column element in the previous row is NA, make current row NA

I am writing a function that will take the largest elements in a vector V.Size and output into a matrix N by N+1. My problem is when V.Size is smaller than N*(N+1). When this happens, the matrix ...
1
vote
3answers
49 views

R data.table: Count Occurrences Prior to Current Measurement

I've a set of measurements that are taken over a period of days. The number of measurements is typically 4. The range of numbers that can be captured in any measurement is 1-5 (in real life, given the ...
0
votes
0answers
49 views

How do I apply functions to matrices in R?

Are there any packages/functions in R that allow users to apply functions to matrices? For example the Taylor expansion of the matrix M when the exponential function is applied is ...
0
votes
1answer
42 views

data frame with 0 columns and 0 rows error

I am writing a method that finds outliers and print them to the user alongside a special symbol that indicates the outlier type. The outliers could be calculated in two ways: the Engineer's method or ...
4
votes
2answers
51 views

An issue with vectorising Gsub

Aim: I am a newcomer to R, but I am trying to familiarise myself with programming in R. In a current task, I wanted to replace a number of words occurring in a corpus whilst keeping in tact the ...
0
votes
1answer
46 views

Hiding Undocumented Functions in a Package - Use of .function_name?

I've got some functions I need to make available in a package, and I don't want to export them or write documentation for them. I'd just hide them inside another function but they need to be ...
0
votes
2answers
44 views

Traverse matrix (grid of points) in blocks of 4

This question is for a project and nothing to do with homeworks/acads. I am a working statistician. So my question is, how would you write a R function, given a matrix with 400 rows and two columns ...
4
votes
1answer
44 views

Subsetting based on multiple function arguments

I'm new to function writing so hopefully the below makes some sense. I want to create a function which takes some arguments, which will be used to subset a data.frame. I have searched across the ...
1
vote
2answers
37 views

ddply multiple function arguments + naming

Browsing other questions I have almost solved my problem but failing at the last hurdle... using R I have a dataframe (d) of which I pass through a function (fd) with ddply from the plyr package, ...
0
votes
2answers
59 views

How to calculate a pooled standard deviation in R?

I want to calculate the pooled (actually weighted) standard deviation for all the unique sites in my data frame. The values for these sites are values for single species forest stands and I want to ...
0
votes
1answer
45 views

Creating a function to split data frames multiple times then recombine

I'm working on a large dataset in R with 3 factors: FY (6 levels), Region (10 levels), and Service (24 levels). I need to sum my numeric vector, SumOfUnits, at all three levels, and the only way I ...
0
votes
1answer
38 views

Loop function through dataset during optimization

I have the following data: data_ex <- structure(list(ID = c(493L, 493L, 493L, 493L, 493L, 493L, 493L, 493L, 494L, 494L, 494L, 494L, 494L, 494L, 494L), value.y = c(1.403198175, 1.403198175, ...
1
vote
2answers
53 views

Apply a function on all elements in a Dataframe

I am sure the answer is simple, but I did a lot a searching the last days, but apparently not able to figure out the right thing to do.. The problem is: I have imported a dataset via RODBC that shows ...
0
votes
1answer
35 views

Passing and using an environment in a function

I am working with some large data sets and have constructed a negative log likelihood function and associated gradient to pass to an optimisation routine. Both the functions require a vector of ...
0
votes
1answer
42 views

How to simplify several for loops into a single loop or function in R

I am trying to combine several for loops into a single loop or function. Each loop is evaluating if an individual is present at a site that is protected, and based on that is assigning a number ...
1
vote
1answer
79 views

R and Shiny: Pass inputs from sliders to reactive function to compute output

I have 6 parameters that the user can change values for. These are our 6 inputs. I want to create an output value that takes those 6 inputs and computes our value of interest given a number of ...
3
votes
1answer
63 views

Find the package names from a function name in R [duplicate]

Sometimes, I got some R code without the information of loaded packages. For example, x <- thisisafunction(data) and I have no idea which package thisisafunction is coming from. I want to find ...
0
votes
1answer
54 views

Error: evaluation nested too deeply: infinite recursion / options(expressions=)?

I have defined max() function as below: max <- function(...) max(...,na.rm=T) But it fails to compute max(1:5) with following error: Error: evaluation nested too deeply: infinite recursion / ...
4
votes
1answer
53 views

Print dataframe name in function output

I have a function that looks like this: removeRows <- function(dataframe, rows.remove){ dataframe <- dataframe[-rows.remove,] print(paste("The", paste0(rows.remove, "th"), "row was removed ...
0
votes
1answer
34 views

Using logical operators to subset in a function

I'm trying to use a logical operator to subset in a function as follows: iris$Species <- as.character(iris$Species) mySubsetFunction <- function(df, species){ dfSubset <- subset(df, ...
2
votes
1answer
38 views

R programming: perform function with switch functionality for each row based on different columns

In R programming I try to do the following: df A B Category 0.9 0.85 A 0.7 0.75 B 0.8 0.90 B CSF <- function(df, type) { switch(type, ...
0
votes
0answers
39 views

Extract list object slot into function with R

I've fitted 28 arma+garch models with a function and put the 28 fits all togheter via sapply: ` garch_models <- sapply(returns, garchAuto)` Now I have the following strucutre (only a extract of ...
1
vote
1answer
47 views

Parameter passing in R when interior function arguments are dependent on optional parameters

I'm working in R and need to pass arguments to a function so that they can be used as arguments when calling another function within the original. In the example below you can see that I'm interested ...
1
vote
2answers
51 views

Changing values within a function

I have the following function which works fine: d16<-function(x) { delay<-difftime(tail(x$date.time[x$station == "L4"],1), x$date.time[x$station == "L4"][1],units="mins") ...
1
vote
4answers
70 views

Use variables from formula in R function

I'd like to write a function of the type myfunction(y,data), y being a column name of data. Do you have any idea on how to code it in order to be able to use the formula myfunction(y~,data=mydata) ...
0
votes
2answers
44 views

Using tapply in a function/loop that will replace variable name for the length of the columns of the dataframe

In R, I have a dataset (which I call star) of records with about 50 appended demographics (each demographic can be called var1, var2, var3, etc). I have split the dataset in ~10% groups by using the ...
0
votes
2answers
54 views

Return multiple values with function in R

Iam trying to calculate multiple values with my own function from a dataframe. The function currently returns only one value in a dataframe. It seems my for loop is not working correctly. I've also ...
0
votes
1answer
34 views

Inserting function argument as string within body of function

I am trying to write a function using aggregate() that will allow me to easily specify one or more variables to list by and their names. data: FCST_VAR OBS_SID FCST_INIT_HOUR ME WIND ...
0
votes
0answers
86 views

Preparing data set for volcano plot in R

I have the following dummy data set: MYdata = data.frame(fruit = c("apple", "apple", "apple", "apple", "apple", "apple", "apple", "pear", "pear", "pear", "pear", "pear", "pear", "lemon", "lemon", ...
2
votes
2answers
66 views

How to use argument of a function as name of variable?

I have the feeling that this is trivial, and I apologize for asking such easy questions, but I would appreciate some help with the following problem: I have a function which requires two arguments: ...
0
votes
1answer
35 views

with GGplot2 is there a way to select only 1 chart from a graph with multiple correlation charts

Lets say i have the following graph: And i only want to select the 2nd graph of the first row. How can i do this with ggplot function as below: plotAll<-function(data,size=2, alpha=0.4){ combs ...
1
vote
1answer
36 views

Calling functions present in a different file in R

I want my R code to be organised into different file. I have done done that but I am not able to call a function present in another file from my current file. I know it would be a simple thing... It ...
0
votes
1answer
40 views

Link id with name [duplicate]

I know that it is quite a simple question but I'm still quite new to R. If I have two tables like this id = c(1,2,3,4,5,6) cost = c(11,22,33,44,55,66) name =c("aa","bb","cc","dd","ee","ff") ...
5
votes
3answers
69 views

Additional function name but with fewer arguments [duplicate]

I need to create additional name for my_function(i,x) (where i can be an integer from 1 to 25). I'd like it to work like this my_function1(x) sames as my_function(1,x) my_function2(x) sames as ...
0
votes
2answers
59 views

Dynamically assigning calculation results in R

I'm in my first week programming in R and while I've made much progress on solving specific issues, I am in need for advice on a larger scale. I have a directory full of data files in CSV format. The ...
2
votes
1answer
33 views

R: Change value of an argument in ellipsis and pass ellipsis to the other function without using list() and eval()

I am looking for a universal way to change a value of an argument inside ellipsis and pass it to the other function. I know an ugly solution for that, which looks like this: test <- function(...) ...
7
votes
1answer
87 views

Redefining a function in an R package

I tried to modify and redefine a function (xcmsRaw) in R package xcms by first defining a function my.xcmsRaw <- function(filename, profstep = 1, profmethod = "bin", profparam ...
2
votes
1answer
42 views

Passing arguments to ggplot in a wrapper

I need to wrap ggplot2 into another function, and want to be able to parse variables in the same manner that they are accepted, can someone steer me in the correct direction. Lets say for example, we ...
0
votes
1answer
45 views

Using merge.zoo to dynamically create variables in R

I'm trying to create a function that automatically creates polynomials of a zoo object. Coming from Python, the typical way to it is to create a list outside a for loop, and then append the list ...
0
votes
1answer
53 views

R - using column name as argument for function inside an apply/colwise function

I have built a function that determines bins for numeric columns and puts the output into the workspace, but I'd like to be able to apply this to a whole data.frame with either an apply or colwise ...
0
votes
3answers
52 views

writing user defined functions

I am new to writing functions and I'm not really sure where to start. Below is a subset of a data frame named m1 for this example. I would like to write a function that will go through the data set ...
2
votes
2answers
47 views

pass string through a function in R

I have the following function: example_Foo <- function( ...,FigureFolder){ # check what variables are passed through the function v_names <- as.list(match.call()) variable_list <- ...
2
votes
2answers
80 views

R: Fastest way to do row wise computation on multiple columns of a data frame

I have a data frame where I want to add another column that's a result of computation involving 3 other columns. The method I am using right now seems to be very slow. Is there any better method to do ...
4
votes
1answer
97 views

Difference between c() and append()

What is the difference between using c() and append()? Is there any? > c( rep(0,5), rep(3,2) ) [1] 0 0 0 0 0 3 3 > append( rep(0,5), rep(3,2) ) [1] 0 0 0 0 0 3 3
2
votes
4answers
95 views

going nuts trying to write a simple function that operates on one column of a dataframe

I am trying to write a function that "variabilizes" the ddply call: december <- ddply(adk47, .(PeakName, Elevation), summarize, needThese=if(sum(dec) == 0) "needThis" else character(0), ...
1
vote
3answers
47 views

Dynamically change column names based on inputs

I am trying to dynamically name the output of a data frame based upon the inputs. get.max2 <- function(data = NULL, column) { #require(qdap) col <- eval(substitute(column), data) max ...
0
votes
1answer
62 views

plotting routine for n number of arguments in r

I have the following parameters that I wish to plot: weight <- c(102,20,30,04,022,01,220,10) height <- c(102,20,30,04,022,01,220,10) catg <- c(102,20,30,04,022,01,220,10) catg <- ...
0
votes
1answer
26 views

R function for plotting x number of variables

I am attempting to write a function that will be inserted into a larger script. The aim of this function is to accept any number of input variables and then plot them accordingly: Plot_funct <- ...
0
votes
1answer
42 views

How to loop a function with sapply?

I would like to calculate roots for different y-values of a quadratic equation. But when I run the following code get an error I do not understand. If y is just one numeric value, instead of the ...
-1
votes
1answer
69 views

How to write a function to generate a sequence of points in R?

This is the PDF that I am dealing with: fx = 0.3 if (0<=x<1) 0.1 if (1<=x<2) 0.25 if (2<=x<3) 0.15 if (3<=x<4) 0.2 if (4<=x<5) 0 otherwise I have to write a function ...

1 2 3 4 5 9