A data frame is one of the basic data structures in the R language. Data frames are lists of variables each with the same number of rows, similar to a table in a data base. Unlike matrices in R, each variable can be a different data type.

learn more… | top users | synonyms (2)

-1
votes
2answers
11 views

How to deleted by row in large data frame

i have a large data frame the unique(ID)=28560 the unique(code)=10957 dim(table)=1318369 obs 3variable ID code N 1 A434 6 1 A314 13 1 477 9 2 A48 ...
0
votes
1answer
31 views

R console doesn't respond to code changes

R console sometimes acts very strangely when I paste code and execute in it. After executing code that creates an output file, the console from then on will only generate that specific output, ...
0
votes
1answer
34 views

sort out large data frame

i have one large data frame ID code N 1 412 2 1 A341 1 1 A520 16 1 47 9 2 283 4 2 412 3 ....... the id is rep. and the i want assign the code is 412 598 A333 ...
0
votes
1answer
25 views

Integrate tables in large data frame

i have three tables the first table include ID First_date,Birthday,Sex ID First_date Birthday Sex 1 19970104 19940921 M 2 19970107 19561224 F 3 20061228 19320426 M 4 20070231 ...
0
votes
2answers
22 views

Extract and sort specific values from an R data frame

I´m quite new to R, and this might there be an easy answer to, but still: I have a data frame on the form df <- data.frame(c("a", "b", "c", "d", "e"), 1:5, 7:11, stringsAsFactors=FALSE) names(df) ...
1
vote
2answers
37 views

transform one long row in data-frame to individual records

I have a variable list of people I get as one long row in a data frame and I am interested to reorganize these record into a more meaningful format. My raw data looks like this, df <- ...
0
votes
0answers
33 views

R - compute values for column of data frame by subtracting values from another data frame

As a follow up to my previous question, I have the following problem (I don't know how to google this, because I can hardly explain what I want to do - and sorry for the question title). My data ...
1
vote
2answers
35 views

How to get a value from a cell of a data frame?

I have constructed a condition that extract exactly one row from my data frame: d2 = df[(df['l_ext']==l_ext) & (df['item']==item) & (df['wn']==wn) & (df['wd']==1)] Now I would like to ...
0
votes
0answers
51 views
+50

convert attribute R xml object into dataframe

My xml files are processed fine with the XML package into R. Here is how the root document looks, in one example - there are no values, only attributes and nodes within nodes - with attributes. ...
1
vote
1answer
35 views

Compute the ratio between two columns using specified conditions

I have a very simple problem here. I want to calculate the ratio between two columns in a dataframe. I want to calculate the ratio when column "COLD" is greater than zero. The ratio would be ...
0
votes
0answers
5 views

replacing data frame values with NA in r

I have a large data frame that consists of 38 variables and over 10000 observations for each variable. How can I select a certain variable and replace specific values with NA. For example, if I have ...
1
vote
2answers
44 views

Calculate the percentages of a column in a data frame - “grouped” by column

I am an R beginner and came to the point, where I need the possibility to calculate percentages of values in a data frame, but "grouped" by an other column value, quite often. I have a data frame ...
0
votes
4answers
54 views

Loop through data frame and variable names

I am looking for a way to automate some diagrams in R using a FOR loop: dflist <- c("dataframe1", "dataframe2", "dataframe3", "dataframe4") for (i in dflist) { plot(i$var1, i$var2) } All ...
0
votes
2answers
26 views

Extracting rows for a Pandas dataframe in Python

I have imported a simple query log into a pandas dataframe in Python (see image), and would like to know what the most efficient way is to extract all of the rows that contain any given keyword that ...
1
vote
1answer
35 views

Overlap time series with different dataframes

I am using different time series in order to plot a graph with recession bars. For the single graph it works fine. However, I would like to overlap the different time series in one single graph. I ...
0
votes
3answers
37 views

How to read the contents of a column, assign these values to new columns and fill them with the values of other columns?

I have the following data frame: df<-data.frame(site=c("A", "A", "B", "C", "B"), A=c("item1", "item1", "item2", "item2", "item3"), A_weight=c(4.2,4.2,6.1,6.4,8.5), ...
0
votes
1answer
22 views

Sorting a data.frame in R maintaining row names

I have a data.frame with daily percentage returns of several Managers, I want to sort the data.frame so that to have, for example the best 5 performers and the worst 5 performers. I found the ...
2
votes
1answer
27 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
17 views

displaying pictures on node dynamically using igraph

I am plotting the data from an excel sheet using igraph. Now I want images to appear dynamically on the nodes depending on the entity that it represents. For e.g. a person's image should be displayed ...
1
vote
3answers
40 views

R, Sum frequency data frame by name

i have a data.frame that looks like this: Name freq 1 species1 4 2 species2 8 3 species1 7 4 species1 ...
1
vote
1answer
55 views

Merging more than 2 dataframes in R by rownames

I gather data from 4 df's and would like to merge them by rownames. I am looking for an efficient way to do this. This is a simplified version of the data I have. df1 <- data.frame(N= ...
1
vote
0answers
28 views

Filtering a data frame in R and an unwanted filtered out result

This snippet: names<-c("Alice","Bob","Charlie") ages<-c(25,24,25) friends<-data.frame(names,ages) a25 <- friends[friends$age==25,] a25 table(a25$names) gives me this output names ...
0
votes
2answers
26 views

Plotting selective values in R above above a given value

I have two columns of data in a data frame in R. I want to plot values from the 2nd column that are above a particular value say 'p'. And I also want to have the X axis as the first column i.e the ...
4
votes
2answers
46 views

simple reshape in R using reshape2 causes error

I am trying to do a simple reshape to make test look like this: a_estimate, a_tstat, b_estimate, b_tstat 1, 3, 2, 4 This is the code I try: require(reshape2) ...
0
votes
2answers
44 views

reshaping and filtering data frame in R

My data frame looks like this: Location Data Value Value_kind A species1 11 single A species2 10 mean A species3 8 ...
0
votes
3answers
30 views

Data frame to matrix without using reshape

I have a data frame: set.seed(1234) mydata <- data.frame(d1=strsplit("AAABBCCCCCDD", "")[[1]], d2=rnorm(12), d3=c("aba", "bbc", "ccb", "aba", "bbc", "ccb", "aba", "aba", "ccb", "bbc", "aba", ...
1
vote
1answer
30 views

Creating multiple new columns using one function in Pandas

I know that this is probably very simple but I have been trying to work this out for a while, and I need it for quite a few functions. I have a DataFrame with 2 columns, both with share price data. ...
1
vote
1answer
36 views

convert data.frame to data.table column missing

Had a case like this. Tried to convert "mtcars" class from data.frame to data.table. "mtcars" data: > mtcars mpg cyl disp hp drat wt qsec vs am gear carb Mazda RX4 ...
1
vote
1answer
34 views

Pandas: What are the cases when count returned by DataFrame describe is a floating point

When describing my Pandas dataframe: i get the following result: Mains_1_Power Mains_2_Power count 17.000000 17.000000 mean 57.063528 200.428607 std 67.605151 ...
0
votes
2answers
41 views

Create barplot from data.frame

In R I have a data.frame like the one on the top of the picture. Is there a possibility to create a barplot like the one on the bottom of the image?
1
vote
2answers
35 views

Combining two data frames into two columns in R

I would like to combine two data frames into two columns in R: Here is an example of the two data frames: Data frame XY: X Y x1 y1 x2 y2 x3 y3 x4 y4 x5 y5 Data frame XZ: ...
2
votes
1answer
29 views

Keeping Row names when using as.data.frame.matrix

I have the following data set: Date<-c("9/7/2010","9/7/2010","9/7/2010", "9/7/2010","9/7/2010","9/7/2010","9/8/2010") EstimatedQuantity<-c(3535,2772,3279,3411,3484,3274,3305) ...
3
votes
3answers
48 views

automatic filtering of measurement data within R

my question is about automatic filtering of measurement data, because I have several hundred files to process. The file-structure looks like: test1 <- ...
7
votes
1answer
44 views

Data.table objects turn into data.frame after calling fix()

Every time I run the command fix(DT) on a data.table, after closing the fix window, DT turns into a data.frame object. Is this normal? library(data.table) DT <- data.table(a = 1:2, b = 2:3) > ...
0
votes
2answers
52 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
39 views

Replacing text in data frame in r

I want to replace text in one column with numbers for example, >df = chickwts >df weight feed 1 179 horsebean 2 160 horsebean 3 136 horsebean 4 227 horsebean 5 217 ...
0
votes
2answers
46 views

Combining items from a data.frame list into a single data.table

I have a named data.frame that contains 10 items with three columns each. Each item in the data.frame looks like this: $RandArcBo1 $RandArcBo1$x [1] -97.5 -174.5 156.5 -172.5 111.5 -132.5 142.5 ...
1
vote
3answers
29 views

Finding proportions based on data.frame subsets

I have a set of counts from data with three dimensions: df <- data.frame(type = c("A", "B", "B", "A", "A", "C", "B", "C"), group = c("Tp", "Tp", "Tp", "Tp", "Fc", "Fc", "Fc", "Fc"), size = ...
1
vote
1answer
48 views

How to insert rows at variable positions in a dataframe

My original data frame shows changes on one variable (act, measured in seconds) over approx a 2-week period for several individuals (identified by Ring). My problem is that this variable stretches ...
0
votes
1answer
38 views

pandas SparseDataFrame insertion

i would like to create a pandas SparseDataFrame with the Dimonson 250.000 x 250.000. In the end my aim is to come up with a big adjacency matrix. So far that is no problem to create that data frame: ...
1
vote
2answers
25 views

dataframe (product) correlations in R

I've got 2 dataframes each with 150 rows and 10 columns + column and row IDs. I want to correlate every row in one dataframe with every row in the other (e.g. 150x150 correlations) and plot the ...
0
votes
1answer
25 views

Add column to data frame with column names of selected options

So if i have a data frame like the following: df = data.frame(cbind(c(0,0,1,0), c(1,0,0,1), c(1,1,0,0))) df X1 X2 X3 1 0 1 1 2 0 0 1 3 1 0 0 4 0 1 0 I would like to add a fouth column ...
2
votes
2answers
26 views

How to subset a dataframe by factor levels of another in R?

I have two daframes (A,B) that both contain exactly the same columns. A<-data.frame(factor=c("A","B","C"),value=c(1,2,3)) B<-data.frame(factor=c("A","B","C","D","E"),value=c(7,8,9,4,5)) At ...
4
votes
1answer
37 views

Programming a sensitivity analysis in R: Vary 1 parameter (column), hold others constant. Better way?

I want to test the sensitivity of a calculation to the value of 4 parameters. To do this, I want to vary one parameter at a time -- i.e., change Variable 1, hold variables 2-4 at a "default" value ...
1
vote
2answers
30 views

How to add a factor column to dataframe based on a conditional statement from another column?

I have a dataframe for which I need to add a factor column based on a conditional statement. Here is the data. Code: morstats.agri.f <- moroccostats[c("year","agVA_g","agVA_ppp_g")] ...
0
votes
1answer
52 views

How to do for loops without overwriting?

I have a large data.frame called rain with information of many species mesured in different plots at different times (census), from which I want to extract the information. This data frame have many ...
0
votes
2answers
52 views

Averages based on elements from other columns

So, I’ve been trying to get this working but for some reason, I’m just not making any progress on this. And I was hoping if you guys could help me. Pretty much, I have a data frame that I would like ...
4
votes
2answers
59 views

How to get column name of the variable with the top 10 highest values?

If I have a data.frame(sum_clus) with 600 columns(variables) and 10 rows which have no NA's and are all numeric values, how can I create 5 new variables that give me the column names of the top 5 ...
1
vote
1answer
23 views

Reshaping block in data.frame to lists is columns uneven length

I would need your help with R to cast this data: STATUS SCORE JOB.ID 1 STATUS1 99 JOB1 2 STATUS1 99 JOB2 3 STATUS1 99 JOB3 4 STATUS1 99 JOB4 5 STATUS2 ...
2
votes
4answers
50 views

find highest proportion in data.frame

I have a dataframe that looks like this: x <- data.frame(sector=rep(1:5, each=2), subspecies=rep(c("Type A", "Type B"), 5), proportion= c(.2, 1-.2, .3, 1-.3, .4, ...

1 2 3 4 5 38