Haris K.
Followers: 0 Following: 0
I am an economist and econometrician with over 10 years of experience in playing with scatter plots and the letters of the Greek alphabet (particularly alpha, beta and epsilon). https://ckarag.github.io/
Python, MATLAB
Professional Interests:
Time Series Analysis, Macroeconomics
Estadística
CLASIFICACIÓN
2.645
of 295.527
REPUTACIÓN
22
CONTRIBUCIONES
16 Preguntas
10 Respuestas
ACEPTACIÓN DE RESPUESTAS
75.0%
VOTOS RECIBIDOS
13
CLASIFICACIÓN
15.473 of 20.242
REPUTACIÓN
9
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
2 Archivos
DESCARGAS
6
ALL TIME DESCARGAS
87
CLASIFICACIÓN
64.952
of 154.057
CONTRIBUCIONES
0 Problemas
3 Soluciones
PUNTUACIÓN
40
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Enviada
DFGLS for MATLAB
DF-GLS test of Elliott, Rothenberg & Stock (1996), with 3 optimal lag-length selection methods (SIC, MAIC, Sequential-t).
4 meses hace | 2 descargas |
Pregunta
Error when running function with batch()
Hi. I am using batch() to run a function with a par-for loop inside. When I run it as a script (instead of a function), everythi...
6 meses hace | 1 respuesta | 0
1
respuestaPregunta
How to make sparsity pattern graph with grouping
Hi. I would like to create a graph looking like the following: The rows correspond to periods (months), and the columns to a...
7 meses hace | 1 respuesta | 1
1
respuestaHow to run an R function from MATLAB
A couple of things if you are trying to run an R script using system(), that could be helpful to other fellow MATLABians out the...
7 meses hace | 0
Pregunta
Why between(datetime1, datetime2) is different from (-1)*between(datetime2, datetime1)?
I am trying to measure the number of 'quarters' apart, between a single datetime r, and a vector of datetimes v. Could somebody ...
9 meses hace | 1 respuesta | 0
1
respuestaPregunta
How to merge new variables and append new rows at the same time (when synchronizing timetables)?
Hi. Below, I have 2 timetables (R1, R2) that I am trying to combine into a single timetable (M). What I am trying to achieve ...
más de 1 año hace | 2 respuestas | 0
2
respuestasEnviada
Interface to easily access FRED® data
Easily download economic data from FRED (Federal Reserve Economic Data), connecting to the FRED server (https://fred.stlouisfed....
alrededor de 2 años hace | 4 descargas |
Matlab Editor does not respond to keyboard inputs
Same problem here. I am using MATLAB R 2020b. Same issue like everybody else. Shortcuts like Ctrl+C and Ctrl+V work. Selecting...
alrededor de 3 años hace | 0
Pregunta
Lag order selection in multivariate time series models using recursive programming
Hi. I am trying to create a recursive function that runs a model comparison procedure and selects the optimal lag order using in...
más de 3 años hace | 0 respuestas | 1
0
respuestasHow to select the desired color of the point in stat_summary('geom',{'point'}) in the Gramm Toolbox?
With a little bit of searching through the created structure, I have found one solution. g.results.stat_summary.point_handle.M...
más de 3 años hace | 1
| aceptada
Pregunta
How to select the desired color of the point in stat_summary('geom',{'point'}) in the Gramm Toolbox?
Hi. I am making a violin plot with a box plot inside, using the Gramm toolbox. I would like to also show the mean, but I do not ...
más de 3 años hace | 1 respuesta | 0
1
respuestaFrom index list to logical index vector
I changed the variable names for brevity. function lgc = unfind(idx, N) %Go from indicies into logical (for vectors only) ...
casi 4 años hace | 2
Pregunta
How to include all variables in each decision tree of an ensemble?
Hi everyone. I am fitting the following 10-tree ensemble. X = rand(1000,50); Y = rand(1000,1); N = size(X,2); Ntrees=10; t...
casi 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Why the ‘CategoricalPredictors’ properties are always empty after running fitrensemble()?
Hi. I am running a regression tree ensemble, and despite specifying a categorical variable using name-value pair 'CategoricalPre...
casi 4 años hace | 1 respuesta | 0
1
respuestaDoes the fitrtree algorithm treat categorical and continuous variables differently?
After your response, I tried to check with a more complicated example. Assume 1000 obs, 20 continuous features, and 1 categorica...
casi 4 años hace | 1
Does the fitrtree algorithm treat categorical and continuous variables differently?
You can see if the two are equivalent using a simple example. The example below shows that Cases 1 & 2 are equivalent. NOTE howe...
casi 4 años hace | 1
Pregunta
How to retrieve optimal MinLeafSize after automatic hyperparameter optimization for Tree Ensemble (fitrensemble)?
Hi. I am running MATLAB's automatic Bayesian optimization for a number of parameters for a Tree Ensemble. opts = struct('Kfold...
casi 4 años hace | 1 respuesta | 1
1
respuestaPregunta
Check for optional inputs in a function using exist
Hi everyone. Is it wrong, prone to mistakes, or slower to check the existance of optional arguments in a function using exist()?...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaTurn logical matrix into string vector
Btw, here is one solution: arrayfun(@(i) vec(idx(i,:)),1:size(idx,1))' But I was wondering if there is something that does not...
alrededor de 4 años hace | 1
Pregunta
Turn logical matrix into string vector
Hi. I have the logical matrix idx and the string array vec. idx = logical([0 1 0; 0 0 1; 1 0 0; 1 0 0; 0 1 0]) vec = ["A","B",...
alrededor de 4 años hace | 4 respuestas | 0
4
respuestasPregunta
Create new table variable filled with values from another table
Hi. I have the following tabels, T1 and T2: Name1=["A","B","C","D"]' Des1=["Shoubidou","Abra","Ca","Dabra"]' T1=table(Name1, ...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Change the format of all Datetime variables in a Table
Is there any way to change the format of all the datetime variables in a table? Var1 = datetime({'2015-12-18 08:03:05';'2015-12...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaResuelto
Create an n-by-n null matrix and fill with ones certain positions
The positions will be indicated by a z-by-2 matrix. Each row in this z-by-2 matrix will have the row and column in which a 1 has...
alrededor de 4 años hace
Resuelto
Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to <http://www.mathworks....
alrededor de 4 años hace
Resuelto
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
alrededor de 4 años hace
Appropriate usage of Parallel Pool
Just in case someone finds this comparison helpful. I changed the methods a bit, as I realized that it is not a good practise to...
más de 4 años hace | 1
| aceptada
Pregunta
Appropriate usage of Parallel Pool
Hi. I have two related questions: Question 1: Which of the following 4 is best to use in order to take advantage of my PC's mul...
más de 4 años hace | 2 respuestas | 1
2
respuestasHow to change the Fonts in a text section (-not code) in Live Script
Briefly let me recap and post the solution. I copied some text from another document (which as it turns out, had the 'Lucida Con...
más de 4 años hace | 1
| aceptada
Pregunta
How to change the Fonts in a text section (-not code) in Live Script
I copied some text from a '.doc' file and pasted it to the Live Editor (in a live script, i.e. '.mlx' file). As a result, it cop...
más de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
Problem in converting datetime to POSIX and then the same POSIX back to datetime
Given that I have specified the time zone in t, could you please explain why the last row will not convert it back to 'XXXX-XX-X...
más de 4 años hace | 1 respuesta | 1