Consider whether your question would be better at http://statistics.stackexchange.com. Statistics is the mathematical study of using probability to infer characteristics of a population from a limited number of samples or observations.
0
votes
1answer
36 views
how to remove wp-stats malware in wordpress?
In my wordpress the follwing code added automatically in the footer.
<script src="http://stats.wordpress.com/e-201319.js" type="text/javascript"></script>
<script ...
0
votes
0answers
27 views
Three.js benchmark, how to?
I'm about to perform some benchmark experiments for WebGL (Three.js). I'm thinking about loading time (from link click to loaded scene), loading time for files, and frame rate.
With many tests I must ...
0
votes
2answers
53 views
Nested tables and calculating summary statistics with confidence intervals in R
This question is about the statistical program R.
Data
I have a data frame, study_data, that has 100 rows, each representing a different person, and three columns, gender, height_category, and ...
0
votes
1answer
15 views
Detect local machine to void updating statistics
I'm developing statistics for a website i'm developing, using PHP and MySQL.
Is there anyway to detect in PHP:
//pseudo code
If (the users machine == a certain MAC address){
don't ...
0
votes
2answers
43 views
Oracle manually update statistics on all tables
Is there a way to update all statistics for all tables regardless of the owner?
I found this sniplet, but I'm not sure if this will grab all tables....
BEGIN
FOR A IN ( SELECT owner FROM ...
0
votes
0answers
19 views
The “formula” argument in R elrm() function did not read a specific data
There was something wrong with the argument "tryout." It kept showing me that "tryout" was not found. What could be wrong with the code?
data <- data.frame(event=c(0,1), x =c(0,1), tryout <- ...
0
votes
2answers
31 views
Having weights shown as an unused argument in logistf R function
I kept getting a problem for the following code; "weights=weight" was shown as an unused argument. How should I solve the problem?
x_0 <- rbinom(1,100, 0.01)
x_1 <- rbinom(1,100, 0.1)
x ...
0
votes
1answer
35 views
Determine coefficients for some function
I have a task that is probably related to data analysis or even neural networks.
We have a data source of our partners, job portal. The source values are arrays of different attributes related to the ...
0
votes
2answers
15 views
Convert Excel Functions
I am trying to convert vba code to c#. Is there a .Net library that contain equivalant Excel functions such as WorksheetFunction.LogInv and WorksheetFunction.NormDist?
0
votes
1answer
41 views
Mahalanobis distance
I would like to apply Mahalanobis distanc method to the data obained from the observation.
Each observation is a time response of the system. I have 30 onservations each 14000 points.
I would like to ...
0
votes
0answers
35 views
Mahalanobis distance covariance
I want to divide a set of vectors into clusters using mahalanobis distance. But I'm not sure from which vectors to take the covariance, since it is very likely they are from multiple clusters.
Should ...
1
vote
1answer
71 views
Highlight tiles with ggplot2 geom_tile() + geom_point()
I have the following plot that looks like:
I'm trying to add points in another layer using according to the following code found here
My data frame i'm importing looks like this:
residue_id ...
0
votes
1answer
49 views
“Vectorizing” this for-loop in R? (suppressing interaction main effects in lm)
When interactions are specified in lm, R includes main effects by default, with no option to suppress them. This is usually appropriate and convenient, but there are certain instances (within ...
0
votes
0answers
24 views
Forward-Backward and Viterbi Algorithm
I am referring to Jason Eisner's nifty "An interactive spreadsheet for teaching the forward-backward algorithm" (http://www.cs.jhu.edu/~jason/papers/#tnlp02).
What does p(STOP|C) and p(STOP|H) ...
0
votes
1answer
28 views
running estimates of empirical PMF and variation therein, given a RNG
Suppose a black-box random number generator which continually emits integer values in some interval (for the case of immediate interest, [0, 255]). I want to estimate the probability mass function ...
0
votes
0answers
14 views
finding t-score given CI and d.f
I'm attempting to use the stats ext for php. has any had success in getting the t-distribution from stats? i have a known confident interval and the degrees of freedom. since the documentation is so ...
0
votes
0answers
9 views
Log delay in Amazon S3
I have recently hosted in Amazon S3, and I need the log files to calculate the statistics for the "get", "put", "list" operations in the objects.
And I've observed that the log files are organized ...
0
votes
0answers
36 views
Smoothing of log-distributed periodogram
I use the lomb-scargle periodogram to output information about chemical species in distinct time periods. This produces a distribution that is skewed heavily, with the majority of points and variance ...
0
votes
0answers
12 views
Which method is best for computing the Matthews correlation coefficient (MCC) values for an unrelated data set?
Which method is best suited for computing the Matthews correlation coefficient (MCC) values for an unrelated data set?
1
vote
0answers
28 views
forward-backward algorithm for secondary structure prediction
I want to use HMM (forward backward model) for protein secondary structure prediction.
Basically, a three-state model is used: States = {H=alpha helix, B=beta sheet, C=coil}
and each state has a ...
1
vote
1answer
46 views
Drawing from certain probabilities in Gaussian Normal Multivariate Distribution in numpy
I have the code and picture of the output listed below but I want to take random samples from these spheres within the specific standard deviations that have been plotted. The variable sdwith is used ...
0
votes
1answer
29 views
How to make a new Column based on conditions
Hi I have 2 columns in my table: ROM and Treatment
ROM is filled with values between -20 and 20 and Treatment has 0 or 1.
I need to find a way to get all the ROM values that are in the control group ...
0
votes
0answers
20 views
Looking for a software to support a business need
I am in search of a software package to solve a problem. I have have been unable to find one that meets the need at this point through Goolge so I decided to ask here to look for ideas. Keep in ...
0
votes
0answers
24 views
How do I make R run R Commander every time it starts up?
I used to have it set up that R commander plug-in would start up automatically every time I opened the R application, but I've upgraded R and can't remember how I did it.
0
votes
0answers
16 views
Does lassoglm in Matlab compute the naive elastic net?
Does lassoglm in Matlab compute the naive elastic net? I can't find the place where the estimated beta is multiplied by (1+ lambda_2).
1
vote
1answer
40 views
R: running t-test on one column of a dataframe versus all others [duplicate]
I have a dataframe of the basic form:
> head(raw.data)
NAC cOF3 APir Pu Tu V2.3 mOF3 DGpf
1 6.314770 6.181188 6.708971 6.052134 6.546938 6.079848 6.640716 ...
1
vote
3answers
53 views
How to determine if a current set of data values represent or relate to previous historic data values?
I am trying to develop an method to identify browsing pattern of a user on the basis of page requests.
In a simple example I have created 8 pages and for each page request from the user to the page I ...
1
vote
1answer
36 views
how to plot joint distribtuion of 2 random variable having 1000 data
here is the code i wrote to generate probability distribtuion of two random variable. now i would like to plot JPD.
clear all;
clc;
x1 = randn(1000,1);
x2 = 10*randn(1000,1);
[count_1, b] = ...
0
votes
1answer
65 views
How to calculate probit in C++
I'm converting some SAS code into C++ but currently stuck on how to calculate the probit function.
I believe I've found the probit formula (http://en.wikipedia.org/wiki/Probit) but my statistics ...
0
votes
1answer
35 views
t-test in R between individuals columns and the rest of a given dataframe
This is in R. I need help taking a dataframe of basic format
NAC cOF3 APir Pu Tu V2.3 mOF3 DGpf
1 6.314770 6.181188 6.708971 6.052134 6.546938 6.079848 6.640716 ...
2
votes
1answer
32 views
How is this advanced SQL syntax constructed?
I have done the SQL beginners and advanced courses at W3Schools successfully, and cannot find any other free advanced onine SQL course. I am having a problem with the SQL syntax in the accepted answer ...
5
votes
2answers
113 views
Predict binary occupancy vector from history of vectors
I have a set of binary vectors where each vector represents one day of occupancy in a house and consists of 48 elements (each element for 30 minutes of the day). Each element can be 1 meaning that ...
1
vote
0answers
39 views
Using MEDIAN along side MAX, MIN, and AVG functions in MySQL
I have the following MySQL query which is working perfectly:
select
count(*) as `# of Data points`,
name,
max((QNTY_Sell/QNTYDelivered)*1000) as `MAX Thousand Price`,
...
0
votes
0answers
14 views
Cholesky decomposition to create correlated data while preserving their original properties
I used Cholesky decomposition to transform a set of independent normal data to correlated normal data; however, the correlated data has different means and variances compared to the original. Is there ...
0
votes
1answer
43 views
One-sided Wilcoxon signed-rank test using scipy
I would like to perform a one-sided wilcoxon rank test to my paired data, as I'm interested if one sample is significantly greater than the other.
Scipy offers
scipy.stats.wilcoxon(x,y)
to perform ...
1
vote
1answer
53 views
Proper way to select statistically random dataset for cotraining in matlab
I have came across various ways to find out random dataset for training of a classifier in MATLAB like crossval and cvpartition etc. I have gone through all the examples but couldn't understand them ...
2
votes
1answer
40 views
Create specified correlation between variables (by permutation) in R
I am looking for a way to create a specified correlation between 2 variables, regardless of their distribution, given that the ordening is allowed to change. The motivation has to do with Bayesian ...
-1
votes
1answer
39 views
using ANOVA test for comparing multiple samples
I have a matrix,which each of columns is the algorithm output for some tries.
I want to compare the mean of each algorithms with all others.
how can i do this with matlab?
0
votes
0answers
25 views
Predicting future calls from past call logs?
I have a lot of call log data. For example
John +1789456123 4.29.2013 13:45 34s
Jane +1321654987 4.20.2013 10:03 12s
Bob +1459623847 4.15.2013 20:12 45s
Mark +1379164986 4.10.2013 15:11 33s
etc...
...
2
votes
0answers
80 views
How to remove one outlier in ggplot2 facet point_plot that squash the rest of the data
I produced a faceted plot that I'm very satisfied with except for one issue. On a couple of the plots, one or two outliers completely ruin the graph. I could use y_lim function, but I'm using ...
0
votes
1answer
32 views
best strategy to store statistics data [closed]
I've an ruby on rails app, I'd like to ask which is the best strategy to collect large amount of statistics data.
I have a Event model and i create EventStat model and i write a new record on it all ...
-2
votes
0answers
171 views
Why does Mann-Whitney U-test in R generate negative p-value? [closed]
I'm running wilcox.test in R to test 1-tailed test among two samples and it gives me negative p-values like below:
[1] 1.948161e-09
[1] 3.177668e-12
[1] 1.948161e-09
Anyone can give me some pointer ...
-1
votes
1answer
66 views
How to find the mode of an ArrayList in Java [duplicate]
How would you find the mode of an ArrayList in Java?#
public class test {
public static void main (String [] args) {
ArrayList <Integer> max = new <Integer> ();
//* declared ...
0
votes
0answers
32 views
Any way to simply convert an ARIMA model to an infinite AR representation in R?
I'm trying to recreate some test statistics that use the infinite AR representation of normal ARMA models.
I found out about the function ARMAtoMA but have not been able to find the same ...
1
vote
1answer
108 views
Different results of K-means algorithm in Weka
If i use any of the algorithms in Weka i have reults of the following format:
=== Stratified cross-validation ===
=== Summary ===
Correctly Classified Instances 302 63.3124 %
...
1
vote
2answers
43 views
python numpy - optimize chisq function by removing explicit python loop?
I'm trying to evaluate a chi squared function, i.e. compare an arbitrary (blackbox) function to a numpy vector array of data. At the moment I'm looping over the array in python but something like this ...
0
votes
2answers
117 views
Is there a way to programmatically find a pattern from just three elements in a given sequence?
Some Context
I found myself confronting a mathematical meme on Facebook (try not to laugh):
Clearly, this is a simple problem which can be solved by first looking at each number as if they're ...
2
votes
1answer
48 views
Sample from half a Gaussian distribution
Suppose n = N(0,1) is a normal distribution. In MATLAB, when the randn(1,1) function is used, a sample is extracted from n.
However, I have a different objective: I would like to sample from the ...
0
votes
1answer
39 views
Is there python packages for training loglinear model?
Does anyone know if there is any existing package in python to train loglinear model? I have a dataset with 2000 variables and 1000 records. I am looking to use loglinear model to estimate ...
0
votes
0answers
46 views
Listing iphone apps running in background and its network statistics
I am trying to write an app that will basically monitor other apps installed in the iPhone for network usage. I am struck with 2 major problems.
1) Need to list the apps that are in the background ...



