/
MONEY?? MONEY??

MONEY?? - PowerPoint Presentation

karlyn-bohler
karlyn-bohler . @karlyn-bohler
Follow
373 views
Uploaded On 2015-10-12

MONEY?? - PPT Presentation

LIBRARIES Felix Kabo MArch PhD LIBRARIES NATIONAL INSTITUTES OF HEALTH FUNDING   use bdc2014 create table illinstitutions Institution varchar 255 City ID: 158520

city knowledge varchar counts knowledge city counts varchar rows select moneyflows money abbr state states order upper institutions houses

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "MONEY??" is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

Slide1

MONEY??

LIBRARIES??

Felix Kabo,

M.Arch

, Ph.D.Slide2

LIBRARIES

NATIONAL INSTITUTES OF HEALTH FUNDING

 Slide3

use

bdc2014create

table

ill_institutions

(

Institution

varchar

(

255

),

City

varchar

(

125

),

State

varchar

(

50

),

Zipcode

varchar

(

9

),

RU_VH

varchar

(

1

),

ARL

varchar

(

1

),

ACAD_RES

varchar

(

1

),

Public_100K

varchar

(

1

),

Public_CA

varchar

(

1

),

latitude

float

,

longitude

float

);

bulk

insert

ill_institutions

from

'C:\Users\Felix Kabo\Desktop\

BDC

Knowledge Institutions.txt'

with

(

firstrow

=

2

);

--406 rowsSlide4

create

table nihgrants2013(ORGANIZATION

varchar(255

),

AWARDS

int

,

FUNDING

int

,

CITY

varchar

(

125

),

STATE

varchar

(

2

)

);

bulk

insert

nihgrants2013

from

'C:\Users\Felix Kabo\Desktop\NIH Funding FY2013.txt'

with

(

firstrow

=

2

);

--2292 rowsSlide5

select

sum(FUNDING)

as

moneyflows

,

upper

(

CITY

)

as

city

,

upper

(

STATE

)

as

state

into

moneysum

from

nihgrants2013

group

by

CITY

,

STATE

order

by

moneyflows

--813 rows

select

*

into

knowledge_houses

from

ill_institutions

left

join

states_abbreviations

on

ill_institutions

.

State

=

states_abbreviations

.

ST

--406 rowsSlide6

select

COUNT(Institution)

as

knowledge_counts

,

upper

(

City

)

as

cities

,

ABBR

as

states

from

knowledge_houses

group

by

City

,

ABBR

order

by

knowledge_counts

--318 rows

select

COUNT

(

Institution

)

as

knowledge_counts

,

upper

(

City

)

as

cities

,

ABBR

as

states

from

knowledge_houses

where

ABBR

!=

'NULL'

group

by

City

,

ABBR

order

by

knowledge_counts

--279 rowsSlide7

select

COUNT(Institution)

as

knowledge_counts

,

upper

(

City

)

as

cities

,

ABBR

as

states

into

total_knowledge

from

knowledge_houses

where

ABBR

!=

'NULL'

group

by

City

,

ABBR

order

by

knowledge_counts

--279 rows

select

*

into

money_knowledge

from

moneysum

left

join

total_knowledge

on

moneysum

.

city

=

total_knowledge

.

cities

and

moneysum

.

state

=

total_knowledge

.

states

--813 rowsSlide8

select

* from

money_knowledgewhere

states

!=

'NULL'

order

by

moneyflows

--194 rows

select

*

from

money_knowledge

where

knowledge_counts

>

0

order

by

moneyflows

--194 rowsSlide9

--

Finally, take easy route and calculate correlations in Stata...or do it in SQLalter

table money_knowledge

alter

column

moneyflows

bigint

declare

@mean1

decimal

(

20

,

6

)

declare

@mean2

decimal

(

20

,

6

)

select

@mean1

=

AVG

(

moneyflows

*

1.0

)

,

@mean2

=

AVG

(

knowledge_counts

*

1.0

)

from

money_knowledge

where

knowledge_counts

>

0

;

select

(

SUM

((

moneyflows

*

1.0

-

@mean1

)*(

knowledge_counts

*

1.0

-

@mean2

))/

COUNT

(*))

/((

STDEVP

(

moneyflows

*

1.0

)*

STDEVP

(

knowledge_counts

*

1.0

)))

as

correlation

from

money_knowledge

where

knowledge_counts

>

0

;

--0.554758521032079 Is it elegant? Maybe not...but you get the pictureSlide10

MORE LIBRARIES

= MORE MONEY!!