Questions tagged [mixed]
259 questions
1
vote
1 answer
Dynamically separate and convert SAP txt file of mixed datatypes to readable and non-scientific notation
I got a Dataframe of kind as .txt-format out of SAP. There's currently no option to export as .csv or any other data format. The .txt file contains multiple data frames in one file. SAP has a special format - I don't know if Python has a specific…

CuriousDataScientist
- 43
- 5
1
vote
2 answers
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.6800 5.0720 0.0398 23.1889 16.7889
1948…

Tung
- 26,371
- 7
- 91
- 115
1
vote
1 answer
Clustering on large, mixed type data
I'm dealing with a dataframe of dimension 4 million x 70. Most columns are numeric, and some are categorical, in addition to the occasional missing values. It is essential that the clustering is ran on all data points, and we look to produce around…

M. Capewell
- 55
- 6
1
vote
1 answer
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 Chebyshev
{
template
class function_data :…

Brett Ryland
- 1,045
- 1
- 9
- 17
1
vote
0 answers
Mixed model ANOVA and linear regression in python with two dimensional spline function
I used to work with R, but am trying to solve the same problem in Python now. To analyse plant breeding trials I have used the "sommer" package in R for mixed modelling with two dimensional splines. Now I want to recreate the same in python. I…
1
vote
0 answers
How do I obtain residuals and check their normality when conducting a mixed ANOVA in R?
Prior to conducting a 2 (between-group factor: 2 levels) by 2 (within-group factor: 2 levels) mixed ANOVA in R, I would like to test whether the residuals of my outcome variable are normally distributed. This is one of the assumptions of the mixed…

Lisa
- 11
- 2
1
vote
3 answers
Python string 2d list to mixed int/string list
Got this list:
test_list = [['1', '350', 'apartment'], ['2', '300', 'house'], ['3', '300', 'flat'], ['4', '250', 'apartment']]
Trying to get mixed list like
test_list = [[1, 350, 'apartment'], [2, 300, 'house'], [3, 300, 'flat'], [4, 250,…

Augis
- 79
- 6
1
vote
1 answer
code::blocks, how to put the linker option `-lstdc++` at the end of the compiler command?
The IDE is code::blocks on ubuntu 18.04.
The workspace contains two simple projects. The first one is a c++ static library with only one cpp file presented in follows.
// try.cpp -- The c++ static library is defined as:
# include…

rocket
- 21
- 5
1
vote
0 answers
How To Find And Fix Insecure Content Using SSL? Resolve Mixed content error .Net
RESOLVED!!!!
If you are using SSL it’s important to pay attention to your website pages and ensure that all your content is served via a secure connection. Here are some tips on what to do if you find any “mixed content" or "insecure content” errors…

Minu Manjaly
- 26
- 3
1
vote
1 answer
Difference in lme and lme4 in R? Difference from STATA too?
I'm doing mixed effects modeling (using data at two timepoints), and am wondering why there are difference within R packages and also between programs. Here is a reproducible example:
USArrests$ID <- as.factor(matrix(1:50))
USArrests <-…

lazylarry
- 21
- 2
1
vote
0 answers
mixed model questions without group
So I'm new to linear mixed models and know basic R but that's it. I understand the idea of mixed models conceptually but am having trouble with the syntax and interpretation.
I have one outcome measure (blood level) and am trying to see if they…

lazylarry
- 21
- 2
1
vote
0 answers
How to consume multipart/mixed payload as multipart?
I have hit a REST API which consumes multipart/mixed data with a payload but the REST API takes it as a string. If I try other Object as Multipart, RequestPart then it throws a 415 UnsupportedMediaType Exception.
This is the multipart/mixed payload…

aatish bansal
- 11
- 3
1
vote
0 answers
How to turn off Auto Mixed Precision in validation time?
I try to run the MAC network (https://github.com/stanfordnlp/mac-network/tree/gqa) with Auto Mixed Precision.
def addOptimizerOp(self):
with tf.variable_scope("trainAddOptimizer"):
self.globalStep = tf.Variable(0, dtype…

Hoang Anh
- 11
- 2
1
vote
1 answer
Why is the VS C++ linker returning "LNK2001: unresolved external symbol" with mixed DLL forwards?
I want to make a wrapper DLL because I need to monitor the calls so I can make use of the DLL myself for another project. I have no documentation of the wrapped DLL. I used the wrapper2.cpp project of Michael Chourdakis to create the initial source…

GunterO
- 389
- 2
- 13
1
vote
1 answer
TF Object Detection API Mixed Precision
I'm using the TensorFlow Object Detection API for training a detection model on a V100 GPU. Since it has tensor cores available, is there any config flag / kwarg available to turn on mixed precision training? Not sure if this is a current feature or…

Austin
- 6,921
- 12
- 73
- 138