The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
16 views

Visualising results from 'effects' package

Any ideas on how to control the tick-label size e.g. on the following code i'd like to control the font size of the words 'Male' and 'Female' on the x axis and the units of 'volunteer' on the Y axis. ...
0
votes
2answers
28 views

how to select max of mixed string/int column?

Lets say that I have a table which contains a column for invoice number, the data type is VARCHAR with mixed string/int values like: invoice_number ************** HKL1 HKL2 HKL3 ..... ...
0
votes
0answers
11 views

Using Abstract Types in XSD

I have an abstract complexType with two attributes (length and position) defined as below <xs:complexType name="abstractFieldType" abstract="true" ...
0
votes
1answer
29 views

How to mix 2 columns in css3 webkit?

I'm trying to use column in css3 to divide the content newspaper. The problem is I can't mix 2 columns of 3 columns by h1. Here is image I want : I want it to support only -webkit- only. Also you ...
0
votes
0answers
14 views

mixed model on case-matched cohort with repeated measures in spss

I am working in spss 21 on a database including multiple parameters of cancer patients. I have been asked to perform a case-matched analysis on a cohort of patients whose clinical parameters were ...
0
votes
0answers
75 views

IE: Mixed content warning on session timeout - AngularJS

I've been trying to solve this problem with no success. I have som angular services something like this: angular.module('testServices', [ 'ngResource' ]).factory('test1Mng', function($http){ ...
0
votes
0answers
28 views

nuclear family data analysis

I'm interested in family based study. While searching for papers, I have read one paper with great interest. Paper title: Biometrical Modeling of Twin and Family Data using standard mixed model ...
-1
votes
1answer
40 views

sqlalchemy how to using AND in OR operation?

i need to do this query: SELECT * FROM tbl_member WHERE (member_type==1 AND member_status==1) OR (member_type==2 and member_status==2) i've tried: q=session.query(tbl_member) \ ...
0
votes
0answers
31 views

Licencing Confusion [closed]

I am developing an application using the Codeigniter PHP framework which has its own licence here - http://ellislab.com/codeigniter/user-guide/license.html and I am wanting to integrate "Plupload" in ...
0
votes
0answers
34 views

Unable to provide random parameter with mlogit

I'm having trouble with rpar argument in the mlogit function (package mlogit). My dataset looks like this: > head(scan.s) year id.scan day weather sealvl wave lact repro nb.gr HS ...
0
votes
1answer
21 views

Mixing JOINED and SINGLE_TABLE Inheritence using Annotations

I have looked on the forum for similar questions but haven't found anything that addresses what I'm looking for (at least what i can tell). I have a situation where we have multiple clients with ...
0
votes
1answer
89 views

Merge sort: sorting a list with mixed elements

I'm writing a merge sort in Scheme. I have a merge sort definition, a splitter which splits the list, and a merge which merges the list. (define mymergesort (lambda (alist) (if (null? (cdr ...
0
votes
0answers
399 views

SOAPUI - REST request multipart/mixed - how to add attachment

I am trying to test RESTful service which is configured to consume multipart/mixed using soapui tool. @POST @Path("requestXmlAndAttachment") @Consumes({ "multipart/mixed" }) @Produces({ ...
0
votes
1answer
92 views

Is there a way to input a covariance matrix (or something like that) into lme4 in R?

I have a very large data set that I extract from a data warehouse. To download the data set to the box where I want to run lme4 takes a long time. I would like to know if I could process the data ...
0
votes
1answer
57 views

What are differences between mixed data and panel data or longitudinal data?

everyone, I don't understand the differences between mixed data, panel data or longitudinal data. Recently,I am studying the boost technique and learing the R packages "GMMBoost": Likelihood-based ...
1
vote
1answer
141 views

Multithreading 4-Tier Mixed Producer Consumer Pattern - Threads Not Alternating Properly

Here is the problem I am trying to model: I have an incoming call center (no outbound calls). There are 3 employee levels - Freshers, Technical Lead, Project Manager. In our call center there is only ...
1
vote
1answer
74 views

java generic method

I have class Pager. And I need to put in lists in various types and I need to returns the same list types. Code of Pager There is only constructor and getData method, that only get a subset and ...
1
vote
2answers
115 views

Unknown Exception when using .NET 4.5 and Mixed Assemblies

I have a problem when the new .Net Framework (version 4.5) is installed. I am working on a plugin assembly that is accessed through native code. The library is build using Visual Studio 2010 and with ...
0
votes
1answer
116 views

Exclude one factor level interaction calculation in R : lme4

I am making mixed models, using lme4, which included three factors (S,M,R) with 2,3 and 4 levels. But I am missing observations for S3:M2:R1, so I am not able to check for the 3-way interaction. Is ...
0
votes
1answer
151 views

how to split a vector with mixed variables into two separate vectors in R

I extracted a mixed variable which includes both numeric and string values from a data file using strsplit function. I ended up with a variable just as seen below: > sample3 [[1]] [1] "1200" "A" ...
0
votes
0answers
132 views

Calculating HPD-interval from lme(nlme-package)

I wondered if anyone know how to create a mcmc sampling and calculate the HPD interval for a linear mixed model made by lme from the nlme package. I am familiar with doing this with the lme4 package, ...
0
votes
1answer
52 views

Parse through array of objects

I am getting the following array of objects as response when printing a variable called $userStatistic. OnApp_User_BillingStatistics Object ( [_tagRoot] => vm_stat ...
0
votes
1answer
227 views

C# Mixed mode assembly release mode error

I'm building an app on C# with .NET framework 4.5, but one of the dlls I'm using is built with .NET 2.0, so I'm trying to add mixed mode assembly functionality. This is the error I receive: Mixed ...
1
vote
0answers
94 views

Covariance matrix in non linear mixed effects matlab

I'm wondering if someone is familiar with the NLMEFITSA algorithm in matlab. This algorithm gives me as result the fixed effects parameters (beta) for a mixed effects model as well as their covariance ...
0
votes
2answers
77 views

What is the meaning of xs:mixed without elements?

I got the following XSD bit from a customer. It is part of a legacy schema that spans over dozens of files. <xs:element name="stateProvinceName"> <xs:complexType mixed="true"> ...
1
vote
0answers
139 views

Specify mixed model with ezMixed and get predictions and plots with ezPlot2 (ez package)

I am a ez package newbie and I have been trying to run a mixed effect anova using ezMixed as my repeated measure data is unbalanced and there is some missing data for some of the repeated ...
0
votes
1answer
183 views

ColdFusion special unicode characters in the content returned by cfhttp

In the content retrieved with ColdFusion http object there are some characters that are returned as question marks; namely these are roman numerals (like â…¡) which are displayed without problems when I ...
1
vote
0answers
403 views

Mixed C++ DLL Project with native and CLI code

I've created C++ DLL project, this dll contains mostly native c++ code, but it have 1 mixed class written in C++ and using some .NET types. This class is declared in header file and have ...
2
votes
0answers
765 views

OpenCV Android initializing Mat crashing the application with unsatisfiedLinkedError

It seems like i am not able to use any of opencv variable or function it just crash with the following kind of error using only Mat outMat = new Mat(); this code when i am coding in java class. ...
1
vote
2answers
687 views

Mixed mode assembly is built against version 'v1.1.4322' of the runtime and cannot

I am trying to get a windows service to work but I keep getting the following error... Mixed mode assembly is built against version 'v1.1.4322' of the runtime and cannot be loaded in the 4.0 runtime ...
0
votes
2answers
400 views

http content on a https page - Mixed content

I was wondering how I should do this. I have some https pages, but need to call in some http content from my CDN provider. The content I am wanting to load via http is javascript, css and images. ...
1
vote
0answers
145 views

Passing a pointer to a pointer variable from Fortran 77 to C

I have to write some code that mixes Fortran 77 with C. Suppose I have a C function with signature void foo(int ** x); Thus, if I were calling foo in C, I might have int x_val = 42; int * x_ptr = ...
2
votes
1answer
2k views

Deploying database and web projects during TFS build process

I have a mixed solution with a couple of Web applications and SQL Database projects. I also have a remote test server with MS SQL 2012 and IIS 7. The TFS build server is on another machine. All the ...
0
votes
1answer
373 views

Spring data neo4j and mogodb mixed up

I am using Spring-data-Neo4J and Spring-data-MongoDb together. Calling the save method on UserRepository generates an error. Any help will be greatly appreciated. My domain class @Document ...
2
votes
2answers
440 views

single level variables in mixed model (lme4) error in R

set.seed(1234) mydata <- data.frame ( individual = factor(1:10), M1a = factor (sample (c(1,2),10, replace = T)), M1b = factor (sample (c(1,2),10, replace = T)), pop = factor (c(rep(1, 5), ...
2
votes
1answer
251 views

C-Fortran Mixed Programming

I am working on a project where I have to use a Fortran library in C. In the Fortran library there is a common block containing a complex*16, 4x4 array. Now in C, a complex variable is simply a struct ...
4
votes
2answers
780 views

R: lme4 mixed model error

What is wrong with the following model: # simulated data yr = 2; vg = 4, fm = 5, gen = 5 mbb <- data.frame( trait1 = rnorm(200, 15, 4),yr = c(rep (1:2, each = 100)), vg = c(rep(rep(1:4, ...
0
votes
2answers
2k views

Error: Invalid character in name at (1)

I am trying to compile a fortran file along with some .h files in FORTRAN. The .h files contain definition for common blocks of variable. When I compile them in Fortran, I get the following error: ...
1
vote
2answers
809 views

Mixed Programming Fortran and C

I am a Theoretical Physics research student, working in Cosmology. In course of my research I have use to rather huge library of Fortran codes and I used C for my programming needs. I have been able ...
-1
votes
1answer
46 views

Mixed types in XSD [closed]

How to verify XML element with mixed content? Element can contain string "Undefined" or float values. I think it can be done thru string Restriction with pattern, but maybe a better way exists?
0
votes
2answers
70 views

Data Custom Array Groupping C#

I've been struggling to group some data into an array of this format: http://pastebin.com/dxkCnzq3 In case your confused it would be something like this (number of type) new ...
0
votes
1answer
163 views

AQTime: “Force Garbage Collection” button grayed out

I googled around a bit, but couldn't find a reason. My app is mixed (C#, VB.NET, C++/CLI and native C++). AQTime claims to be able to profile this kind of application, that's why I chose it. It does ...
6
votes
1answer
1k views

Questions about converting a mixed-encoding file to UTF8 in Perl

I'm in the process of converting files generated by the ancient DOS-based library program of our university's Chinese Studies Department into something more useful and accesible. Among the problems ...
3
votes
1answer
155 views

Mac target being built with iphonesimulator gcc 4.2

In a Mixed 3.2.5 iOS/MacOS project, there is an existing iOS static library target, and I'm adding a MacOS static library. In the target build settings(all configurations) I set the Base SDK to ...
6
votes
5answers
2k views

Free .NET Profiler for .NET 4.0 mixed code

I checked out some of the performance profilers mentioned here. But... EQATec didn't work for me because I have many assemblies I want to profile, and it has a limit on assemblies to profile. How ...
0
votes
2answers
131 views

Matlab cannot read this type of mixed format text?

I need to read a text file with strange format using Matlab. The 1st column is Year, 2nd column is Month and 3rd column is Day 1948 9 9 23.0600 5.1100 0.0371 25.6667 17.8500 1948 910 ...
2
votes
3answers
3k views

Java - Mixed ArrayLists?

Is it possible to store a mixture of object types in an ArrayList? If so how? This is what I have tried so far: List<Object> list = new ArrayList<Object>(); list.add(new String("Hello ...
1
vote
1answer
508 views

boost::operators mixed arithmetic

based on the example here http://www.boost.org/doc/libs/release/libs/utility/operators.htm#example, I have implemented the following derived class of boost::numeric::ublas::vector: namespace ...
0
votes
1answer
752 views

How to mix few jQuery UI range slider together?

Anyone know how to mix few jQuery UI range draggable slider together? Sample Image that showing what I mean: Click here Sample code for single range draggable slider: <script ...
3
votes
2answers
803 views

What is the best way to store multiple data type into database

I am designing a database using MSSQL server 2005 to store log values from different devices. The datatype of the values can be boolean, int-32 or 64 bit-double There will be a lookup table called ...

1 2