For questions relating to missing data problems, which can involve special data structures, algorithms, statistical methods, modeling techniques, visualization, among other considerations.

learn more… | top users | synonyms

-1
votes
0answers
28 views

Imputation in R using a regression method [closed]

I have a data set with 5 variables, 4 of them have missing vales. One one them doers not have any missing values. How can I sue to fill the rest of the data using that nonmissing column? Any ...
1
vote
2answers
58 views

Replaced stars with NA has no effect when data is read from a function in R

I have data frame where the missing values are denoted with star sign "*". I have replaced them with > mydata[mydata == "*"] <- NA but when I use str(mydata) it shows that the missing values ...
1
vote
1answer
45 views

Multi-level regression model on multiply imputed data set in R (Amelia, zelig, lme4)

I am trying to run a multi-level model on multiply imputed data (created with Amelia); the sample is based on a clustered sample with group = 24, N= 150. library("ZeligMultilevel") ML.model.0 <- ...
1
vote
1answer
23 views

Calculate variance of frequencies when dataset does not contain entries of frequency zero

I have a dataset that has three fields: id, feature and frequency. What I want to do is find out, for a group of given id's, which feature has the largest spread of frequencies. The result I want is ...
0
votes
2answers
39 views

How to change na.action for zero-inflated regression model?

I am running a zero-inflated negative binomial regression model using the function zeroinfl from the pscl package. I need to exclude NA's from the model in order to be able to plot the residuals ...
5
votes
1answer
62 views

How to create missing values in table in R?

I have 40 pairs of birds with each male and female in the pair scored for their colour. The colour score is a categorical variable with a value range of 1 to 9. I would like to create a table with the ...
-1
votes
1answer
77 views

How to recode missing data in R when R does not recognise the continuous variable?

I have a continuous variable, with some 'NA'and for some reason when I try to look at the variable (i.e mean summary) this is what comes up: Summary(THM1$Br03) Length Class Mode 0 NULL ...
1
vote
1answer
44 views

Fill in missing pandas data with previous non-missing value, grouped by key

I am dealing with pandas DataFrames like this: id x 0 1 10 1 1 20 2 2 100 3 2 200 4 1 NaN 5 2 NaN 6 1 300 7 1 NaN I would like to replace each NAN 'x' with the ...
5
votes
1answer
37 views

Lag with missing data

I have a dataset on state level approval ratings. I need to lag one of the variables by two years. The data is annual and spans 1970 to 2008. Obviously, if I lag the data I will lose some ...
0
votes
2answers
20 views

How to return back the imputed values in R

Is there any function in R that can help to return imputed values, for example: x <- c(23,23,25,43,34,22,78,NA,98,23,30,NA,21,78,22,76,NA,77,33,98,22,NA,52,87,NA,23, 23) by using single linear ...
2
votes
3answers
64 views

Predict.glm not predicting missing values in response

For some reason, when I specify glms (and lm's too, it turns out), R is not predicting missing values of the data. Here is an example: y = round(runif(50)) y = c(y,rep(NA,50)) x = rnorm(100) m = ...
-2
votes
0answers
20 views

HtmlAgilityPack and Failure to identify attributes [closed]

I am doing some HTML processing and have spotted a failure or fault where htmlagilitypack fails to identify that a certain attribute exists. I copied the html out and tested and it is there - When ...
7
votes
2answers
171 views

What is the difference between <NA> and NA?

I have a factor named SMOKE with levels "Y" and "N". Missing values were replaced with NA (from the initial level "NULL"). However when I view the factor I get something like this: head(SMOKE) N N ...
0
votes
1answer
24 views

Why does my MySQL database tables only exist on my Workbench?

I am developing my first php-MySQL system, but have a minimum of database experience. I have successfully created a schema with aproximately 10 tables, and the testings have so far worked fine. My ...
0
votes
0answers
16 views

Recovering files missing from Rails / Heroku / S3

I have discovered a lot of files missing from my Amazon S3 repo that serves my Rails app, and after some digging in my S3 activity records, I discovered large file delete operations on March 30th ...
0
votes
3answers
52 views

Using SAS, is it possible to get a frequency table where no data exist?

This is a follow-up to my previous post on SO. I am trying to produce a frequency table of demographics, including race, sex, and ethnicity. One table is a crosstab of race by sex for Hispanic ...
6
votes
3answers
219 views

Specify different types of missing values (NAs)

I'm interested to specify types of missing values. I have data that have different types of missing and I am trying to code these values as missing in R, but I am looking for a solution were I can ...
0
votes
2answers
20 views

Jars disappear from Tomcat7 lib folder

I have a Java EE web project in Eclipse and a Tomcat7 installation on my Windows 7 PC. Occasionally, some of the jersey-server jars disappear from the lib folder in the Tomcat7 installation. ...
2
votes
2answers
66 views

Delete specific values in R with zoo/xts

My other Question about "Add missing xts/zoo data with linear interpolation in R" you can find here Add missing xts/zoo data with linear interpolation in R . But in general there is one more problem ...
0
votes
2answers
56 views

Interpolate Missing Values in SQL Server 2012

I want to interpolate missing values and update my table accordingly in SQL server 2012 For example my data is as follow: Week_Number Var1 Output_Var 1 10 10 2 20 ...
0
votes
2answers
81 views

Automatically join missing data gaps in Highcharts JS

I'm currently looking to implement Highcharts JS into my application, using months as the x-axis categories. However, I have gaps in my data, and wish for the chart to automatically connect the gaps. ...
1
vote
2answers
65 views

How can I set “999” as the DEFAULT missing value in SPSS/PASW?

I'm importing a very large dataset into SPSS. Many fields in the dataset contain a "999" value, indicating a missing value. I want to instruct SPSS to view them as such. However, default each variable ...
0
votes
2answers
78 views

Imputing observations to make cross section a time series in R

I'm hoping to take a dataset with cross section salary data for employees and create a large uninterrupted time series, imputing values along the way. Suppose I have: name <- ...
0
votes
0answers
4 views

Best Imputation Technique

Can someone suggest me the best imputation technique for missing categorical data, that can deal with many variables.
4
votes
2answers
94 views

How to set conditions for filling specific gaps in panel data?

I have panel data in an R data.frame containing years from 1989-2008 for armed conflicts in various countries. However, only observations for countries which experienced armed conflict in a given year ...
0
votes
1answer
69 views

Merge three list to Dictionary but everything is out of place/not printed

I asked this question yesterday Merging three lists into into one dictionary The number one answer was the most correct in what I needed but re-looking at MY automobile.txt file I realized two ...
0
votes
1answer
45 views

Mysql query for latest value when date is missing

I have a table with a date and value column. The table is populated daily with new values. On occasion the population does not take place. I need to generate a report of the latest value on each past ...
0
votes
1answer
60 views

Ignoring weekends when using time series operators in STATA

Is it possible to tell STATA to ignore saturdays and sundays when using time series operators such as L and F? For example, consider this dataset: date price L1.price / L2.price (currently) ...
0
votes
1answer
44 views

Replace NA in column with value in adjacent column

This question is related to a post with a similar title (replace NA in an R vector with adjacent values). I would like to scan a column in a data frame and replace NA's with the value in the adjacent ...
0
votes
0answers
102 views

Webpage stuck in loading in Chrome

My webpage gets stuck in loading in Chrome (the little spinning icon on the page tab, and the mouse cursor also stuck in loading version), but the odd thing is everything in the website displays fine. ...
2
votes
1answer
154 views

How to efficiently extrapolate missing data for multiple variables

I have panel data and numerous variables are missing observations before certain years. The years vary across variables. What is an efficient way to extrapolate for missing data points across multiple ...
0
votes
1answer
63 views

Missing database entries with a null value in row, when performing a linq statment

so here's the sql query: Select distinct A.CategoryName, A.CategoryID, B.ProjectID from [EvalTool].[dbo].[Category] A Left Join [EvalTool].[dbo].[CategoryAndProject2] B On A.CategoryID = ...
0
votes
2answers
77 views

Missing data & single imputation

I have a complete ozone data set which consist a few missing values. I would like to use SPSS to do single imputation to impute my data. Before I start impute my data, I would like to do randomly ...
0
votes
1answer
100 views

pandas.Dataframe: filling missing values from another DF

For example I have this: df_1 = pd.DataFrame({'A': [3 for _ in xrange(10)], 'B': [3 for _ in xrange(10)], 'C': [3 for _ in xrange(10)]}) df_2 = ...
0
votes
1answer
61 views

SharpPCap missing packets

I'm using SharpPCap to collect IEC61850-9-2LE Sampled Values over Ethernet. IEC61850-9-2LE Sampled Values consists of several streams, each one sending 4000 packets per second, where the avg packet ...
-2
votes
1answer
72 views

Python: missing list data when list.reverse [closed]

In the first function of my second class I keep having all of the data of my first list. I added a a print out of it in between the different steps and it seems to happen at the beginning of my second ...
0
votes
1answer
92 views

Extract x-axis value using y-axis data in R

I have a time-series dataset in this format: Time Val1 Val2 0 0.68 0.39 30 0.08 0.14 35 0.12 0.07 40 0.17 0.28 45 0.35 0.31 50 0.14 0.45 100 1.01 1.31 105 0.40 ...
0
votes
1answer
20 views

missing the database

I have a problem with my database which is base on access. when i try to use insert command, all records send to mydatabase.mdb in root folder, but when I want to read from database, records come from ...
1
vote
0answers
42 views

PHP accessing MySQL database correctly for some users, others missing some columns

I am at a loss for what is happening here -- because depending on which user I check, there isn't necessarily something wrong at all. Here's the database in question's structure: userID ...
0
votes
2answers
465 views

missing value in highcharts line graph results in no line, just points

please take a look at this: http://jsfiddle.net/2rNzr/ var chart = new Highcharts.Chart({ chart: { renderTo: 'container' }, xAxis: { categories: ['Jan', 'Feb', 'Mar', ...
0
votes
1answer
101 views

missing values in a floating point matrix OpenCV

I want to reconstruct missing values in a floating point matrix in OpenCV. The Mat contains floating values with minimum value 0. I tried this : Convert floating point Mat to CV_8U . The CV_8U ...
1
vote
1answer
55 views

Switched Branch After .gitignore and lost .gitinored files

I am new to git, so sorry if this question has already been answered. I'm having trouble finding the answer to this. I wanted to ignore a set of files that had never been committed before for a ...
1
vote
4answers
48 views

How to view duplicated records with one or more NA's?

my dataset looks like following: ID Score A1 60 A1 50 A1 NA B1 30 B1 33 C1 48 C1 39 D1 21 D1 38 D1 NA I would like to see duplicated records which has NA's. Such as: A1 60 A1 50 A1 NA D1 21 D1 38 ...
0
votes
1answer
169 views

SQL Server 2008 finding missing rows [duplicate]

I have a huge DB and one table in particular is missing rows. I know this to be true but I need to find the gaps and show them. The primary key is the sequence number column. I need to show the actual ...
0
votes
1answer
73 views

PayPal NVP API skips transactions at TransactionSearch

I'm using the PayPal NVP API to search and download the transactions. The problem appears when the interval between STARTDATE and ENDDATE is too big, i.e. 4 months or so. Then i get 100 ...
5
votes
1answer
72 views

numpy: using operator - with arrays containing None

I have a list of numbers which I put into a numpy array: >>> import numpy as np >>> v=np.array([10.0, 11.0]) then I want to subtract a number from each value in the array. It can ...
0
votes
1answer
39 views

Need help to resolve errors un using py2exe missing

The following modules appear to be missing email.Generator email.Iterators email.Utils win32api win32con w in32pipe wx My setup file looks like this: # Copyright (c) 2011 Cisco Systems, Inc. from ...
0
votes
0answers
100 views

Select smallest value greater than x which meets specific condtions and then insert values into rows

I am working on a a (relatively) large table and am stuck with the following problem. What I am trying to do is to pick-up 'Value' from one table (table A) and putting them in another table (table B) ...
1
vote
1answer
97 views

Plotting two columns against each other omitting missing values

This is my dataframe using dput(): structure(list(Year = 1900:1903, Top.10..income.share = structure(c(82L, 81L, 76L, 75L), .Label = c("", "30,3", "30,65", "30,8", "31,3", "31,37", "31,38", "31,4", ...
0
votes
0answers
37 views

What is a CSS mergeFile?

I am converting a website to a CMS. I noticed a line in the code that calls mergeFile: <link rel="stylesheet" type="text/css" href="foo/bar/style.css@mergeFile=_page.css" /> I can't seem ...

1 2 3 4