Top 3 occupations with the most new job openings in Texas for Apr

The top three occupations with the most new job openings in Texas for the month of April were Driver/Sales Workers and Truck Drivers with 1,043 new openings, Secretaries and Administrative Assistants with 1,047 new openings, and Elementary and Middle School Teachers with 1,130 new openings.

April 2015

Occupation Total Openings New Openings
Driver/Sales Workers and Truck Drivers 7,031 1,043
Secretaries and Administrative Assistants 6,299 1,047
Elementary and Middle School Teachers 4,564 1,130

Source: BLS

California RN’s, PA’s, and therapists see increase in job openings from Mar to Apr

healthcare

The number of job openings in California for nurses, therapists, and physician assistants increased from 15,983 in March 2015 to 20,399 in April 2015. The searcher-to-job opening ratio increased from 1.22 to 2.16 in the same span.

 

nurse_2015_04

Source: BLS

Image source: http://pediatric-nurse-practitioners.blogspot.com/2012/12/top-5-cardiac-care-nursing-jobs-for-we.html

California innovation job openings increased from Mar to Apr

innovation

The number of job openings in California for “Innovation Type Jobs” increased from 24,870 in March 2015 to 29,183 in April 2015. The searcher-to-job opening ratio also increased from 0.54 to 1.34 in the same span.

Innovation jobs definition: http://www.employstats.com/blog/2014/09/26/1233/

innovation_2015_04

Image source: http://www.bizjournals.com/sacramento/news/2013/09/23/symposium-innovation-ecosystems-jobs-wea.html

Texas healthcare jobs increased by 0.5% from Feb to Mar

healthcare

The health care and social assistance industry gained 7,000 jobs from February 2015 to March 2015. Compared to March 2014, the cumulative number of jobs added in this industry is 49,900, an annual increase of 3.8%.

Source:http://www.tracer2.com/admin/uploadedPublications/2133_TLMR-March_15.pdf

Image source: http://blogs.wsj.com/health/2012/01/06/health-care-sector-adds-jobs-as-overall-employment-picture-looks-healthier/

Texas oil and gas extraction jobs increased by 0.5% from Feb to Mar

texas-oil-and-gas-image

The oil and gas extraction industry in Texas gained 500 jobs from February 2015 to March 2015. Compared to March 2014, the cumulative number of jobs added in this industry is 2,100, an increase of 2.1%.

Source: http://www.tracer2.com/admin/uploadedPublications/2133_TLMR-March_15.pdf

Image Source: http://www.eliteexploration.com/texas-oil-gas-companies/

CPI rose while medical care commodities and medical services fell from Jan to Feb

cpi

general_inflation_2015_02The consumer price index (CPI) went up from 234.677 in January 2015 to 235.186 in February 2015, an annualized rate of 2.60%.

medical_commodities_2015_02 medical_services_2015_02

The price index for medical care commodities went down at an annualized rate of 0.06% from January 2015 to February 2015. During the same period, the price index decreased for medical care services (2.31%), hospital and related services (2.32%), and professional services (1.86%).

Source: BLS

Image source: http://www.shutterstock.com/pic-54762670/stock-photo-background-concept-illustration-consumer-price-index.html

Texas RN’s, therapists, and PA’s see increase in job openings from Dec to Jan

nursing_symbol

The number of job openings in Texas for nurses, therapists, and physician assistants increased from 10,144 to 10,588 from December 2014 to January 2015. The searcher-to-job opening ratio increased from 0.63 to 0.91 during that same span.

nurse_2015_01

Source: BLS

Image source: http://www.carrollhs.org/s/1253/index.aspx?pgid=877

Texas healthcare jobs increased by 0.2% from Jan to Feb

healthcare

The health care and social assistance industry gained 3,000 jobs from January 2015 to February 2015. Compared to February 2014, the cumulative number of jobs added in this industry is 43,500, an annual increase of 3.3%.

Source:http://www.tracer2.com/admin/uploadedPublications/2133_TLMR-March_15.pdf

Image source: http://blogs.wsj.com/health/2012/01/06/health-care-sector-adds-jobs-as-overall-employment-picture-looks-healthier/

STATA statistical code for estimation of Millimet et al. (2002) econometric worklife model

The STATA code for estimating the Millimet et a;. (2002) econometric worklife model can be found below. The code  will need to be adjusted to fit your purposes. However, the basic portions are here.

use 1992-2013, clear

drop if A_W==0
keep if A_A>=16 & A_A<86

*drop if A_MJO==0
*drop if A_MJO==14 | A_MJO==15

gen curr_wkstate = A_W>1
lab var curr_wkstate “1= active in current period”
gen prev_wkstate = prev_W>1
lab var prev_wkstate “1= active in previous period”
gen age = A_A
gen age2 = age*age
gen married = A_MA<4
gen white = A_R==1
gen male = A_SE==1

gen mang_occ = A_MJO<3
gen tech_occ = A_MJO>2 & A_MJO<7
gen serv_occ = A_MJO>6 & A_MJO<9
gen oper_occ = A_MJO>8

gen occlevel = 0
replace occlevel = 1 if mang_occ==1
replace occlevel = 2 if tech_occ==1
replace occlevel = 3 if serv_occ==1
replace occlevel = 4 if oper_occ ==1

gen lessHS = A_HGA<=38
gen HS = A_HGA==39
gen Coll = A_HGA>42
gen someColl = A_HGA>39 & A_HGA<43

gen white_age = white*age
gen white_age2 = white*age2
gen married_age = married*age

gen child_age = HH5T*age

/*
gen mang_occ_age = mang_occ*age
gen tech_occ_age = tech_occ*age
gen serv_occ_age = serv_occ*age
gen oper_occ_age = oper_occ*age
*/

merge m:1 age using mortalityrates

keep if _m==3
drop _m

gen edlevel = 1*lessHS + 2*HS + 3*someColl + 4*Coll

save anbasemodel, replace
*/ Active to Active and Active to Inactive probabilities

local g = 0
local e = 1

forvalues g = 0/1 {

forvalues e = 1/4 {

use anbasemodel, clear

xi: logit curr_wkstate age age2 white white_age white_age2 married married_age HH5T i.year_out if prev_wk==1 & male==`g’ & HS==1
*Gives you conditional probability
*summing these figures gives the average predicted probabilities

predict AAprob

keep if occlevel==`e’
*collapse (mean) AAprob mortality, by(age)

collapse (mean) AAprob mortality (rawsum) MARS [aweight=MARS], by(age)

gen AIprob = 1-AAprob

replace AAprob = AAprob*(1-mortality)
replace AIprob = AIprob*(1-mortality)

save Active_probs, replace

*Calculates Inactive first period probabiliteis

use anbasemodel, clear

xi: logit curr_wkstate age age2 white white_age white_age2 married married_age HH5T i.year_out if prev_wk==0 & male==`g’ & HS==1

predict IAprob

keep if occlevel==`e’

*collapse (mean) IAprob mortality , by(age)
collapse (mean) IAprob mortality (rawsum) MARS [aweight=MARS], by(age)

gen IIprob = 1-IAprob
save Inactive_probs, replace

*Calculates WLE for Active and Inactive

merge 1:1 age using Active_probs

drop _m

order AAprob AIprob IAprob IIprob
*Set the probablilties for end period T+1

*Note the top age changes to 80 in the later data sets
gen WLE_Active = 0
replace WLE_Active = AAprob[_n-1]*(1+AAprob) + AIprob[_n-1]*(0.5 + IAprob)
gen WLE_Inactive = 0
replace WLE_Inactive = IAprob[_n-1]*(0.5+AAprob) + IIprob[_n-1]*IAprob

gen WLE_Active_2 = 0
replace WLE_Active_2 = WLE_Active if age==85

gen WLE_Inactive_2 = 0
replace WLE_Inactive_2 = WLE_Inactive if age==85
local x = 1
local y = 80 – `x’

forvalues x = 1/63 {

replace WLE_Active_2 = AAprob*(1+WLE_Active_2[_n+1]) + AIprob*(0.5 + WLE_Inactive_2[_n+1]) if age==`y’
replace WLE_Inactive_2 = IAprob*(0.5 + WLE_Active_2[_n+1]) + IIprob*WLE_Inactive_2[_n+1] if age==`y’

local x = `x’ + 1
local y = 80 – `x’

}

keep age WLE_Active_2 WLE_Inactive_2
rename WLE_Active_2 WLE_Active_`g’_`e’
rename WLE_Inactive_2 WLE_Inactive_`g’_`e’

save WLE_`g’_`e’, replace

keep age WLE_Active_`g’_`e’
save WLE_Active_`g’_`e’, replace

use WLE_`g’_`e’, clear
keep age WLE_Inactive_`g’_`e’
save WLE_Inactive_`g’_`e’, replace

di `e’
/**End of Active to Active and Active to Inactive probabilities*/

local e = `e’ + 1
}

local g = `g’ + 1

}
local g = 0
local e = 1

forvalues g = 0/1 {

forvalues e = 1/4{

if `e’ == 1 {
use WLE_Active_`g’_`e’, clear
save WLE_Active_`g’_AllOccLevels, replace

use WLE_Inactive_`g’_`e’, clear
save WLE_Inactive_`g’_AllOccLevels, replace

}

if `e’ > 1 {

use WLE_Active_`g’_AllOccLevels, replace
merge 1:1 age using WLE_Active_`g’_`e’
drop _m
save WLE_Active_`g’_AllOccLevels, replace

use WLE_Inactive_`g’_AllOccLevels, replace
merge 1:1 age using WLE_Inactive_`g’_`e’
drop _m
save WLE_Inactive_`g’_AllOccLevels, replace

}

local e = `e’ + 1
}

if `g’ ==1 {
use WLE_Active_0_AllOccLevels, clear
merge 1:1 age using WLE_Active_1_AllOccLevels
drop _m
save WLE_Active_BothGenders_AllOccLevels, replace
use WLE_Inactive_0_AllOccLevels, clear
merge 1:1 age using WLE_Inactive_1_AllOccLevels
drop _m
save WLE_Inactive_BothGenders_AllOccLevels, replace
}

local g = `g’ + 1

}

!del anbasemodel.dta

Texas oil and gas extraction jobs decreased by 1.1% from Jan to Feb

texas-oil-and-gas-image

The oil and gas extraction industry in Texas lost 1,100 jobs from January 2015 to February 2015. Compared to February 2014, the cumulative number of jobs added in this industry is 1,400, an increase of 1.4%.

Source: http://www.tracer2.com/admin/uploadedPublications/2133_TLMR-March_15.pdf

Image Source: http://www.eliteexploration.com/texas-oil-gas-companies/