search for: labour

Displaying 20 results from an estimated 134 matches for "labour".

Did you mean: labor
2013 Apr 09
1
sorting the VAR model output according to variable names??
I was wondering if one can have the coefficients of VAR model sorted according to variable names rather than lags. If you notice below, the output is sorted according to lags. >VAR(cbind(fossil,labour),p=2,type="const") VAR Estimation Results: ======================= Estimated coefficients for equation fossil: =========================================== Call: fossil = fossil.l1 + labour.l1 + fossil.l2 + labour.l2 + const fossil.l1 labour.l1 fossil.l2 labour.l2 const 0...
2005 Dec 24
8
Prototype OOP example
Hi, Here is what I want to do: Labour = Class.create(); Labour.prototype = { initialize:function(name){ this.name = name; } } What I want to do is create a class called "Worker" which will inherit from "Labour", and the signature of "initialize" is "function(name, position)". M...
2011 Nov 03
2
query about counting rows of a dataframe
Dear R users, I have got the following data frame, called my_df: gender day_birth month_birth year_birth labour 1 F 22 10 2001 1 2 M 29 10 2001 2 3 M 1 11 2001 1 4 F 3 11 2001 1...
2009 Jan 19
1
reference category for factor in regression
Hi all, I am struggling with a strange issue in R that I have not encountered before and I am not sure how to resolve this. The model looks like this, with all irrelevant variables left out: LABOUR - a dummy variable NONLABOUR = 1 - LABOUR AGE - a categorical variable / factor VOTE - a dummy variable glm(VOTE ~ 0 + LABOUR + NONLABOUR + LABOUR : AGE + NONLABOUR : AGE, family=binomial(link="logit")) In other words, a standard interaction model, but I want to know the intercepts and...
2008 Oct 14
1
Labour Statistics
...ough to put together a product that can be sold to any kind of firm or organization (brokerages or any kind of investing firm, federal ministry of finance, statistics canada (like the bureau of stats in the USA), universities etc) In Canada on the 10th of every month, statistics canada releases labour statistics for the previous month. The way CFO sees it, *ideally* on the (1st to 10th, something like that) every month, the firm I work for could be releasing data for the rest of the month. What I'm trying to figure out is if you were in the position of evaluating the final product for p...
2010 Jul 19
2
Grouping and stacking bar plot for categorical variables
...tion=sample(c("less", "same", "more"), 1000, replace=TRUE) defence=sample(c("less", "same", "more"), 1000, replace=TRUE) egp=sample(c("salariat", "routine non-manual", "self-employed, farmers", "skilled labour, foremen", "unskilled labour", "social and cultural specialists"), 1000, replace=TRUE) welfare, education and defence are responses to a series of questions about whether or not the respondent supports, less, the same or more spending on an issue. egp is a class cat...
2010 Sep 21
2
group means of multi-way table?
...out the mean score of z for NDP managers, Conservative managers and Liberal managers and then for a few other configurations. Ive played around with aggregate, tapply and by, but I can't get it to work. Cordially, Simon Kiss mydata=data.frame(cbind(x,y,z)) mydata$x=as.factor(sample(c("labourers", "salaried", "managers"), size=300, replace=TRUE)) mydata$y=as.factor(sample(c("NDP", "Green", "Liberal", "Conservative"), size=300, replace=TRUE)) mydata$z=as.numeric(sample(1:4, size=300, replace=TRUE)) ********************...
2019 Feb 19
2
Cambiar el formato de datos
...tps://stat.ethz.ch/mailman/listinfo/r-help-es >>>> >>> >>> >>> -- >>> Saludos, >>> Carlos Ortega >>> www.qualityexcellence.es >>> >> >> >> -- >> >> Member, Editorial Committee, *The Economic and Labour Relations Review* (a >> SAGE journal) >> >> http://elr.sagepub.com/ >> >> Member, Editorial Committee, African Journal of Economic and Management >> Studies >> >> >> http://emeraldgrouppublishing.com/products/journals/editorial_team.htm?id=ajems...
2011 Mar 31
1
Cluster analysis, factor variables, large data set
Dear R helpers, I have a large data set with 36 variables and about 50.000 cases. The variabels represent labour market status during 36 months, there are 8 different variable values (e.g. Full-time Employment, Student,...) Only cases with at least one change in labour market status is included in the data set. To analyse sub sets of the data, I have used daisy in the cluster-package to create a distance ma...
2019 Mar 06
2
Crear una variable tipo factor a partir de un vector de caracteres
...;>> | >>>> Country == "ea") >>>> }) >>>> Debo de indicar otra condición? >>>> >>>> Agradezco alguna pista >>>> >>>> -- >>>> >>>> Member, Editorial Committee, *The Economic and Labour Relations Review* >>>> (a >>>> SAGE journal) >>>> >>>> http://elr.sagepub.com/ >>>> >>>> Member, Editorial Committee, African Journal of Economic and Management >>>> Studies >>>> >>>> >&gt...
2019 Sep 04
2
Plot. window error- Usando R base. Gráfico
...iendo el mismo error > >>>>> > >>>>> Alguna idea, > >>>>> > >>>>> gracias > >>>>> > >>>>> -- > >>>>> > >>>>> Member, Editorial Committee, *The Economic and Labour Relations > Review* > >>>>> (a > >>>>> SAGE journal) > >>>>> > >>>>> http://elr.sagepub.com/ > >>>>> > >>>>> Member, Editorial Committee, African Journal of Economic and > Management &g...
2024 Apr 01
2
NUT v2.8.2, the Easter Egg Edition
Hello all, After a prolonged labour with a few re-issues of the tag and many pushes during the day, NUT v2.8.2 was found in a strange egg by a bunny hopping away from the April fools. All that - blessed under the shine of Polar lights in the middle of the icy North Ocean. A python module was released but slipped away with an earli...
2024 Apr 01
2
NUT v2.8.2, the Easter Egg Edition
Hello all, After a prolonged labour with a few re-issues of the tag and many pushes during the day, NUT v2.8.2 was found in a strange egg by a bunny hopping away from the April fools. All that - blessed under the shine of Polar lights in the middle of the icy North Ocean. A python module was released but slipped away with an earli...
2019 Sep 04
3
Plot. window error- Usando R base. Gráfico
...lo que da error. >> Si embargo al usar na.omit(dataset), y quedarnos con los valores que no >> son >> NA, me sigue saliendo el mismo error >> >> Alguna idea, >> >> gracias >> >> -- >> >> Member, Editorial Committee, *The Economic and Labour Relations Review* (a >> SAGE journal) >> >> http://elr.sagepub.com/ >> >> Member, Editorial Committee, African Journal of Economic and Management >> Studies >> >> >> http://emeraldgrouppublishing.com/products/journals/editorial_team.htm?id=ajems...
2019 Mar 25
2
Uso de merge
...de pais y año, pero lo que me hace es que el dataframe *y* me hace como un append por filas. Las variables comunes son país y año. Alguna sugerencia? combine = merge(sub_kei, knowledge, by = common_col_names, all.x = TRUE, all.y = TRUE) Saludos -- Member, Editorial Committee, *The Economic and Labour Relations Review* (a SAGE journal) http://elr.sagepub.com/ Member, Editorial Committee, African Journal of Economic and Management Studies http://emeraldgrouppublishing.com/products/journals/editorial_team.htm?id=ajems https://www.researchgate.net/profile/Antonio_Andres (Research Gate profile)...
2019 Feb 19
2
Cambiar el formato de datos
..._________________________ >> R-help-es mailing list >> R-help-es en r-project.org >> https://stat.ethz.ch/mailman/listinfo/r-help-es >> > > > -- > Saludos, > Carlos Ortega > www.qualityexcellence.es > -- Member, Editorial Committee, *The Economic and Labour Relations Review* (a SAGE journal) http://elr.sagepub.com/ Member, Editorial Committee, African Journal of Economic and Management Studies http://emeraldgrouppublishing.com/products/journals/editorial_team.htm?id=ajems https://www.researchgate.net/profile/Antonio_Andres (Research Gate profile)...
2019 Sep 04
3
Plot. window error- Usando R base. Gráfico
...o numerico, y la variable x= Year es integer. Entiendo que es por el problema de los NAs, por lo que da error. Si embargo al usar na.omit(dataset), y quedarnos con los valores que no son NA, me sigue saliendo el mismo error Alguna idea, gracias -- Member, Editorial Committee, *The Economic and Labour Relations Review* (a SAGE journal) http://elr.sagepub.com/ Member, Editorial Committee, African Journal of Economic and Management Studies http://emeraldgrouppublishing.com/products/journals/editorial_team.htm?id=ajems https://www.researchgate.net/profile/Antonio_Andres (Research Gate profile)...
2019 Sep 04
2
Plot. window error- Usando R base. Gráfico
...os valores que no >>>> son >>>> NA, me sigue saliendo el mismo error >>>> >>>> Alguna idea, >>>> >>>> gracias >>>> >>>> -- >>>> >>>> Member, Editorial Committee, *The Economic and Labour Relations Review* >>>> (a >>>> SAGE journal) >>>> >>>> http://elr.sagepub.com/ >>>> >>>> Member, Editorial Committee, African Journal of Economic and Management >>>> Studies >>>> >>>> >&gt...
2019 Oct 10
2
how to automatically create the home directory
...e > > <https://danwalsh.livejournal.com/69837.html> pam_oddjob_mkhomedir > > will create the home directories for you and also ensure that the > > correct selinux labels are applied. I have this on my todo list, as > > I'm currently using the ADUC method, which is labour intensive. > > This will only create the home directories if the user logs into the > Unix domain member directly, it will not work if a user just connects to > a Samba share. > Oh, that's good to know. Thanks. I'm now interested in the script that you and Louis wrote. Ma...
2019 Mar 25
2
Uso de merge
...dataframe *y* me hace como un append por filas. Las > variables comunes son país y año. Alguna sugerencia? > > > combine = merge(sub_kei, knowledge, by = common_col_names, all.x = TRUE, > all.y = TRUE) > Saludos > > -- > > Member, Editorial Committee, *The Economic and Labour Relations Review* (a > SAGE journal) > > http://elr.sagepub.com/ > > Member, Editorial Committee, African Journal of Economic and Management > Studies > > > http://emeraldgrouppublishing.com/products/journals/editorial_team.htm?id=ajems > > https://www.researchgate....