Package brewdata. R topics documented: February 19, Type Package

Size: px
Start display at page:

Download "Package brewdata. R topics documented: February 19, 2015. Type Package"

Transcription

1 Type Package Package brewdata February 19, 2015 Title Extracting Usable Data from the Grad Cafe Results Search Version 0.4 Date Author Nathan Welch Maintainer Nathan Welch Retrieves and parses graduate admissions survey data from the Grad Cafe website ( License GPL (>= 2) Depends RCurl, XML, stringdist, tools Suggests rgl, scatterplot3d LazyData TRUE NeedsCompilation no Repository CRAN Date/Publication :34:01 R topics documented: brewdata-package brewdata dict error_key findscorepercentile getgradcafedata getmaxpages parseresults parseschools quant_conc_table saw_score_table slang_key svq_score_table translatescore verbal_conc_table

2 2 brewdata Index 17 brewdata-package Package Brewdata Details Brewdata is a package built to lookup, parse, and analyze statistics and biostatistics graduate admissions data reported in the Grad Cafe Results Search. Package: brewdata Type: Package Version: 0.4 Date: License: GPL(>=2) brewdata() is the primary method of this package. It returns a data frame of normalized school names, admissions decisions, parsed undergraduate GPA, GRE scores, and the date of the admissions decision. Author(s) Nathan Welch <nathan.welch@me.com> References Grad Cafe: GRE score guide: #Get data for fall 2015 PhD statistics admission decisions one_yr_data = brewdata() head( one_yr_data ) brewdata Function that Converts Grad Cafe Results Data into Usable Information The brewdata method queries the GradCafe Results Search page for application decision data. It then calls the parseresults function to breakdown the text from "Decision & Date" into values useful for exploring admissions decisions.

3 brewdata 3 brewdata(years = 2015, term = "F", degree = "phd", focus = "statistics", resolution = 10, map=false) Arguments years term degree focus resolution map years specifies which years of data to include in the dataset. The year specifies the time at which an applicant would start school not when he or she applied. So, if someone applied for fall 2014 and was accepted in December 2013 and that person was also thoughtful enough to post his or her metrics on the Grad Cafe s Results Search page, then that record would appear if 2014 is part of the years searched. The four digit year (e.g. 2010, 2012, 1999, etc.) is the only acceptable date format. Inputs may be a single value or a list such as 2010:2015 or c(2011,2013,2015). The default is term indicates which term an applicant would begin graduate study. There are only two acceptable values for this parameter: F and S. F narrows the search to fall matriculations only. S narrows the search to include only the spring term. Users may choose only one value. The default is F. degree determines whether results should be for masters or phd programs. Users must specify exactly one and enclose the value in quotes. masters or phd are the only acceptable values for this field. The default is phd. focus specifies the program. Any term that returns results on the Grad Cafe is acceptable, but brewdata was tuned using statistics or biostatistics. School name mappings could be quite poor for any value other than these two. If you choose a value besides statistics or biostatistics, it is strongly suggested to check the school name mapping by setting map=true. The default value is statistics. resolution is related to the school name parsing algorithm. This variable controls the precision required before an original name is replaced with the best standardized equivalent. Therefore, very low values (between 0-5) are cautious selections leading to fewer mis-matches, but more sparse results. Medium range values (8-12) lead to surprisingly accurate replacements when the mother processing stages fail. One might expect a few mis-matched name replacements, but the number of errors should be fairly low. Finally, large values (more than 20) practically guarantee that a school name which is not in our standard dictionary will be replaced with something. Be weary of such large selections; the potential for many mis-matched replacements is high. For the test set, the bulk of the nearest matchs were within 10 units of the original value. Almost none were larger than 30. The default value is 10. map is a variable controlling whether or not the original school names are included in the data frame returned by brewdata(). If map=true, then the returned data includes the parsed names as well as the original. The default value is map=false. Value brewdata returns a data frame of the parsed Grade Cafe Results data. The data frame includes the following attributes:

4 4 brewdata school_name original_name decision status gpa gre_v gre_q gre_aw v_pct q_pct aw_pct month day year is the closest standardized name matching the name entered at the Grad Cafe. brewdata normalizes the names reported on the website to enable aggregate analysis. See the parse_names parameter description above for more details on the parsing methods. is the original name of the university reported to the Grad Cafe. If map=true, then brewdata includes a column showing the names reported on the website alongside the normalized names assigned by brewdata. This column is excluded by default. denotes a university s decision on an application. Possible decisions are accepted ( A ), wait listed ( W ), rejected ( R ), interview ( I ) or other ( O ). denotes an applicant s immigration status. This field is reported directly from the Grad Cafe. Per the website definitions, possible status values are American ( A ), International with a US degree ( U ), International without US degree ( I ), other ( O ), or unknown (? ). is the self-reported grade point average. is the self-reported GRE verbal section score is the self-reported GRE quantitative section score is the self-reported GRE analytical writing score is the percent of verbal section scores below an applicant s self-reported score. Weighted numeric scores are converted to percentile scores using tables 1A and 1B on page 22 of the GRE score guide. Source: is the percent of quantitative section scores below an applicant s self-reported score. Weighted numeric scores are converted to percentile scores using tables 1A and 1B on page 22 of the GRE score guide. Source: is the percent of analytical writing section scores below an applicant s selfreported score. Weighted numeric scores are converted to percentile scores using tables 1A and 1B on page 22 of the GRE score guide. Source: is the month of the date that an admission decision was made not the date an applicant uploaded the result to the Grad Cafe. is the day of the date that an admission decision was made not the date an applicant uploaded the result to the Grad Cafe. is the day of the date that an admission decision was made not the date an applicant uploaded the result to the Grad Cafe. Note Several specialty university departments are mapped to their parent institutions. For example, Booth, Wharton, and Teachers College are mapped to the University of Chicago, University of Pennsylvania, and Columbia University, respectively. If you are interested in results for such schools, set map=true and use grep() on the original_name column to locate rows of data with the desired department. See below for an example. Author(s) Nathan Welch <nathan.welch@me.com>

5 brewdata 5 References Grad Cafe: GRE Score Guide: See Also findscorepercentile, parseresults, parseschools, translatescore, getgradcafedata, getmaxpages #Get data for fall 2015 PhD statistics admission decisions one_yr_data = brewdata( years=2014 ) head( one_yr_data ) ### Remaining examples commented out to satisfy CRAN policies ### #Get several years of data #yrs=2014:2015 #multi_yr_data = brewdata( years=yrs ); head( multi_yr_data ) #results_by_school = split(multi_yr_data[,-1],multi_yr_data$school_name) #Find 2014 results for Chicago Booth #f14 = brewdata( years=2014, map=true ) #booth = f14[ grepl( "booth", tolower( f14$original_name ) ), ] #booth #Continuing with the f15 & school data, let s analyze results from a particular #school, e.g. University of Washington #uw = f15_by_school$ univ washington ; uw #show all UW decisions #uw_stats = uw[ uw$gre_v!=0 & uw$gre_q!=0, ] #UW decisions with GRE stats #plot( uw_stats$gpa, uw_stats$gre_q, xlab="undergrad GPA", ylab="gre Quant Score", # main="university of Washington GPA vs GRE Quant", pch=na ) #col_key = c( darkgreen, gold, red, black, darkgrey ) #lab = factor( uw_stats$decision, levels=c( A, W, R, I, N ) ) #text( uw_stats$gpa, uw_stats$gre_q, label=lab, col=col_key[lab], cex=0.85 ) #Plot the last two years of Berkeley s GPA/GRE Quant decision trends #yrs=2013:2014 #data = brewdata( years=yrs ); head( data ) #berk = split(data[,-1],data$school_name)$ univ california berkeley #berk_stats = berk[ berk$gre_v!=0 & berk$gre_q!=0, ] #plot( berk_stats$gpa, berk_stats$gre_q, xlab="undergrad GPA", ylab="gre Quant Score", # main="berkeley GPA vs GRE Quant Fall ", pch=na ) #col_key = c( darkgreen, gold, red, black, darkgrey ) #lab = factor( berk_stats$decision, levels=c( A, W, R, I, N ) ) #points( jitter( berk_stats$gpa ), jitter( berk_stats$gre_q ), # col=col_key[lab], pch=20) #lgd=c("accepted", "Wait listed", "Rejected", "Interview", "Not Reported" ) #legend( "bottomleft", legend=lgd, col=col_key, pch=20, bty="n", cex=0.75 ) #Plot several years of results of Duke results using the same data from the #Berkeley download.

6 6 error_key #library( scatterplot3d ) #library( rgl ) #duke = split(data[,-1],data$school_name)$ duke univ #duke_stats = duke[ duke$gre_v!=0 & duke$gre_q!=0, ] #col_key = c( darkgreen, gold, red, black, darkgrey ) #lab = factor( duke_stats$decision, levels=c( A, W, R, I, N ) ) #scatterplot3d( duke_stats$gpa, duke_stats$gre_q, duke_stats$gre_v, # xlab="undergrad GPA", ylab="gre Quant Score", zlab="gre Verbal Score", # main="duke GPA vs GRE Quant vs GRE Verbal Fall ", pch=20, # color=col_key[lab] ) #plot3d( duke_stats$gpa, duke_stats$gre_q, duke_stats$gre_v, # xlab="undergrad GPA", ylab="gre Quant Score", zlab="gre Verbal Score", # main="duke GPA vs GRE Quant vs GRE Verbal Fall ", pch=20, # col=col_key[lab] ) dict University Name Dictionary Format The dict dataset includes the parsed names of many popular statistics graduate programs. It is used to standardize the graduate program names, enabling aggregate analysis. data("dict") The format is: chr [1:111, 1] "arizona state univ" "auburn univ" "baylor univ"... - attr(*, "dimnames")=list of 2..$ : NULL..$ : chr "name" data(dict) error_key Common School Name Error Key The error_key dataset includes several regular expressions used to parse school names. This dataset is used to parse commonly mis-spelled terms (e.g. university). It also maps several specific department names into a standardized university name assigned to targets matching the search patterns. For example, any entry name that includes the term Booth is mapped to the standardized name univ chicago. This dataset supports brewdata s parseschools helper function.

7 findscorepercentile 7 data("error_key") Format The format is: chr [1:37, 1:2] "boston bu " "carnegie mellon cmu" "fort collins"... - attr(*, "dimnames")=list of 2..$ : NULL..$ : chr [1:2] "regex" "corrected" data(error_key) findscorepercentile Function Finding Percentile Rank from Scaled Scores findscorepercent looks up the percent of test takers scorig lower than specified scores using tables 1A and 1B on page 22 of the GRE score guide. This is a brewdata helper function that is available to end users, but not necessary for them to run individually. findscorepercentile( score, section) Arguments score score denotes the post-2011 scaled score (i.e ). section section denotes the GRE section to look up. Acceptable inputs are verbal, quant, and writing. Any other values will not return a result. Value findscorepercent returns the percentile score corresponding to one of the three GRE section (i.e. analytical writing, verbal, or quantitative) scaled scores (i.e. 0-6 and ). References GRE Score Guide: See Also brewdata, parseresults, parseschools, translatescore, getgradcafedata, getmaxpages

8 8 getgradcafedata #Quantitative percentile score findscorepercentile( 160, "quant") #Analytical Writing percentile score findscorepercentile( 4.5, "writing" ) getgradcafedata Function that Downloads Grad Cafe Results Data getgradcafedata retrieves data from the Grad Cafe Results Search pages. This is an internal helper function, so end-users should not need to interact with it directly. getgradcafedata( years, term, degree, focus ) Arguments term years degree focus term indicates which term an applicant would begin graduate study. There are only two acceptable values for this parameter: F and S. F narrows the search to fall matriculations only. S narrows the search to include only the spring term. Users may choose only one value. The default is F. years specifies which years of data to include in the dataset. The year specifies the time at which an applicant would start school not when he or she applied. So, if someone applied for fall 2014 and was accepted in December 2013 and that person was also thoughtful enough to post his or her metrics on the Grad Cafe s Results Search page, then that record would appear if 2014 is part of the years searched. The two digit year (e.g. "10", "12", "06", etc.) is the only acceptable date format. Inputs may be a single value or a list such as c("08","13","15"). degree determines whether results should be for masters or phd programs. Users must specify exactly one and enclose the value in quotes. masters or phd are the only acceptable values for this field. The default is phd. focus specifies the program. Any term that returns results on the Grad Cafe is acceptable, but brewdata was tuned using statistics or biostatistics. University name mappings could be quite poor for any value other than these two. The default value is statistics. Value getgradcafedata returns a data frame of loosely parsed results that satisfy the search parameters.

9 getmaxpages 9 References GRE Score Guide: See Also findscorepercentile, parseresults, parseschools, brewdata, getmaxpages #getgradcafedata( years=15, term="f", degree="phd", focus="statistics" ) getmaxpages Helper Function to Find the Maximum Number of Grad Cafe Focus Pages getmaxpages retrieves the max number of data webpages available for processing. Results Search data is served up to the getgradcafedata function one page at a time. This function ensures that the search for results does not run forever. getmaxpages( url ) Arguments url url is the web address for the Grad Cafe Results page. For example, if the desired search focus is statistics, then the url is Value getmaxpages returns the total number of pages of Grad Cafe Results. References tbd... See Also findscorepercentile, parseresults, parseschools, brewdata, getgradcafedata test = " getmaxpages( test )

10 10 parseresults parseresults Function to Convert "Decision and Date" String to Data parseresults attempts to extract self-reported statistics listed from the Grad Cafe "Decision and Date" text field. The parsing rules below were generated based on test runs using the following parameters in the brewdata method: years=c(2015,2014), term="f", degree="phd", focus="statistics" End-users should not need to interact directly with this function, but improving the rules might improve the fidelity of the brewdata method results. parseresults( result ) Arguments result result is a "Decision and Date" string from the Grad Cafe. Value parseresults returns a data frame with the following fields. gpa gre_v gre_q gre_aw month day year decision is the self-reported grade point average. is the self-reported GRE verbal section score is the self-reported GRE quantitative section score is the self-reported GRE analytical writing score is the month of the date that an admission decision was made not the date an applicant uploaded the result to the Grad Cafe. is the day of the date that an admission decision was made not the date an applicant uploaded the result to the Grad Cafe. is the day of the date that an admission decision was made not the date an applicant uploaded the result to the Grad Cafe. denotes a university s decision on an application. Possible decisions are accepted ( A ), wait listed ( W ), rejected ( R ), interview ( I ) or other ( O ). See Also findscorepercentile, brewdata, parseschools, translatescore, getgradcafedata, getmaxpages #"Decision and Date" string parsing x = "Accepted via on 16 Jan 2015 UG GPA: 4.00GRE General (V/Q/W): 167/170/4.00GRE " parseresults(x)

11 parseschools 11 parseschools Function to Match Error Prone Free-text to Standard School Names parseschools finds best matching school name among several possible spellings & abbreviations. Matches are based on a three stages of parsing: stage (1) standardizes the text by removing common typos and spelling errors, stage (2) manually searches for common name variations for the same school, stage (3) uses an automated text processing algorithm to match the closest school name from a standardized list. parseschools( original_name, resolution = 10, map=false ) Arguments original_name resolution map original_name denotes an Nx1 vector of university names read from the Grad Cafe. resolution controls the precision required before an original name is replaced with the best standardized equivalent. Therefore, very low values (between 0-5) are cautious selections leading to fewer mis-matches, but more sparse results. Medium range values (8-12) lead to surprisingly accurate replacements when the mother processing stages fail. One might expect a few mis-matched name replacements, but the number of errors should be fairly low. Finally, large values (more than 20) practically guarantee that a school name which is not in our standard dictionary will be replaced with something. Be weary of such large selections; the potential for many mis-matched replacements is high. For the test set, the bulk of the nearest matchs were within 10 units of the original value. Almost none were larger than 30. The default value is 10. map is a variable controlling whether or not the original school names are included in the data frame returned by brewdata(). If map=true, then the returned data includes the parsed names as well as the original. The default value is map=false. Value school_name is the name of the university corresponding to the row of data. parseschools normalizes the names reported on the website. See Also findscorepercentile, parseresults, parseschools, translatescore, getgradcafedata, getmaxpages

12 12 quant_conc_table x = c( "university of california--berkeley","university of california--berkly", "uc berkeley", "berkeley" ) parseschools( x ) quant_conc_table Table Used to Convert Pre-2011 Quantitative Scores to Current Scaled Score translatescore uses this dataset to convert pre-2011 GRE scores to the current scale using the concordance tables 1D and 1E on pages of the GRE score guide. data("quant_conc_table") Format A data frame with 61 observations on the following 3 variables. old Pre-2011 GRE scaled score, i.e new Current GRE score scale, i.e pct Percent of scores below the associated input Source GRE Score Guide: data(quant_conc_table)

13 saw_score_table 13 saw_score_table Analytical Writing Score Section Table findscorepercent uses the saw_score_table (Score/Analytical Writing Table) to look up the percent of test takers scorig lower than a specified scores using tables 1A and 1B on page 22 of the GRE score guide. data("saw_score_table") Format A data frame with 13 observations on the following 2 variables. score Current GRE score scale, i.e. 0-6 aw Percent of scores below the associated input Source GRE Score Guide: data(saw_score_table) slang_key Table of Common or Shortened University Names parseschools uses this table to try matching a nickname to the formal university or department name. This table corresponds to the second stage of processing. data("slang_key") Format The format is: chr [1:384, 1:2] "a&m" "alberta" "asu" "au" "baylor" "bc"... - attr(*, "dimnames")=list of 2..$ : NULL..$ : chr [1:2] "slang" "name"

14 14 translatescore data(slang_key) svq_score_table Verbal-Quantitative Reasoning Section Score Table Format Source findscorepercent uses the svq_score_table (Verbal-Quantitative Section Score Table) to look up the percent of test takers scorig lower than specified scores using tables 1A and 1B on page 22 of the GRE score guide. data("svq_score_table") A data frame with 41 observations on the following 3 variables. score Post-2011 GRE scaled score, i.e v Verbal score percentile ranking q Quantitative score percentile ranking GRE Score Guide: data(svq_score_table) translatescore Function to Convert Pre-2011 GRE Scores to the Current Scale translatescore converts pre-2011 GRE scores to the current scale using the concordance tables 1D and 1E on pages of the GRE score guide. translatescore(old_score, section)

15 verbal_conc_table 15 Arguments Value old_score old_score pre-2011 quantitative or verbal section score ( ) section section "verbal" or "quant" variable indicating which table to use translatescore returns a GRE score corresponding to the current scale ( ) for the specified section, either quantitative or verbal. References GRE Score Guide: See Also findscorepercentile, parseresults, parseschools, brewdata, getgradcafedata, getmaxpages translatescore( 710, "quant" ) translatescore( 710, "verbal" ) verbal_conc_table Table Used to Convert Pre-2011 Verbal Scores to Current Scaled Score translatescore uses this dataset to convert pre-2011 GRE scores to the current scale using the concordance tables 1D and 1E on pages of the GRE score guide. data("verbal_conc_table") Format A data frame with 61 observations on the following 3 variables. old Pre-2011 GRE scaled score, i.e new Current GRE score scale, i.e pct Percent of scores below the associated input Source GRE Score Guide:

16 16 verbal_conc_table data(verbal_conc_table)

17 Index Topic \textasciitildekwd1 brewdata, 2 findscorepercentile, 7 getgradcafedata, 8 getmaxpages, 9 parseresults, 10 parseschools, 11 translatescore, 14 Topic \textasciitildekwd2 brewdata, 2 findscorepercentile, 7 getgradcafedata, 8 getmaxpages, 9 parseresults, 10 parseschools, 11 translatescore, 14 Topic datasets dict, 6 error_key, 6 quant_conc_table, 12 saw_score_table, 13 slang_key, 13 svq_score_table, 14 verbal_conc_table, 15 Topic package brewdata-package, 2 parseresults, 5, 7, 9, 10, 11, 15 parseschools, 5, 7, 9 11, 11, 15 quant_conc_table, 12 saw_score_table, 13 slang_key, 13 svq_score_table, 14 translatescore, 5, 7, 10, 11, 14 verbal_conc_table, 15 brewdata-package (brewdata-package), 2 brewdata, 2, 7, 9, 10, 15 brewdata-package, 2 dict, 6 error_key, 6 findscorepercentile, 5, 7, 9 11, 15 getgradcafedata, 5, 7, 8, 9 11, 15 getmaxpages, 5, 7, 9, 9, 10, 11, 15 17

Package retrosheet. April 13, 2015

Package retrosheet. April 13, 2015 Type Package Package retrosheet April 13, 2015 Title Import Professional Baseball Data from 'Retrosheet' Version 1.0.2 Date 2015-03-17 Maintainer Richard Scriven A collection of tools

More information

Package uptimerobot. October 22, 2015

Package uptimerobot. October 22, 2015 Type Package Version 1.0.0 Title Access the UptimeRobot Ping API Package uptimerobot October 22, 2015 Provide a set of wrappers to call all the endpoints of UptimeRobot API which includes various kind

More information

Package erp.easy. September 26, 2015

Package erp.easy. September 26, 2015 Type Package Package erp.easy September 26, 2015 Title Event-Related Potential (ERP) Data Exploration Made Easy Version 0.6.3 A set of user-friendly functions to aid in organizing, plotting and analyzing

More information

Package empiricalfdr.deseq2

Package empiricalfdr.deseq2 Type Package Package empiricalfdr.deseq2 May 27, 2015 Title Simulation-Based False Discovery Rate in RNA-Seq Version 1.0.3 Date 2015-05-26 Author Mikhail V. Matz Maintainer Mikhail V. Matz

More information

Package MBA. February 19, 2015. Index 7. Canopy LIDAR data

Package MBA. February 19, 2015. Index 7. Canopy LIDAR data Version 0.0-8 Date 2014-4-28 Title Multilevel B-spline Approximation Package MBA February 19, 2015 Author Andrew O. Finley , Sudipto Banerjee Maintainer Andrew

More information

Package survpresmooth

Package survpresmooth Package survpresmooth February 20, 2015 Type Package Title Presmoothed Estimation in Survival Analysis Version 1.1-8 Date 2013-08-30 Author Ignacio Lopez de Ullibarri and Maria Amalia Jacome Maintainer

More information

Important Steps to Becoming an MA/MS or PhD in Engineering Psychology and Human Factors

Important Steps to Becoming an MA/MS or PhD in Engineering Psychology and Human Factors Important Steps to Becoming an MA/MS or PhD in Engineering Psychology and Human Factors 1. Take the right courses Courses to take as an undergraduate, besides typical PSY courses (Intro, Research Methods,

More information

Package searchconsoler

Package searchconsoler Title Google Search Console R Client Version 0.2.0 Package searchconsoler April 3, 2016 Provides an interface with the Google Search Console, formally called Google Webmaster Tools. URL https://github.com/markedmondson1234/searchconsoler

More information

Tsinghua University-Columbia University Double Masters Degree Program in Business Analytics Application Form

Tsinghua University-Columbia University Double Masters Degree Program in Business Analytics Application Form Tsinghua University-Columbia University Double Masters Degree Program in Business Analytics Application Form Please read the following instructions. Please submit the following materials (hard copy only)

More information

Important Steps to a Masters or PhD in Public Health

Important Steps to a Masters or PhD in Public Health Important Steps to a Masters or PhD in Public Health 1. Take the right courses Courses to take as an undergraduate, besides typical PSY courses (Intro, Research Methods, Stats): Courses related to public

More information

Package syuzhet. February 22, 2015

Package syuzhet. February 22, 2015 Type Package Package syuzhet February 22, 2015 Title Extracts Sentiment and Sentiment-Derived Plot Arcs from Text Version 0.2.0 Date 2015-01-20 Maintainer Matthew Jockers Extracts

More information

Package VideoComparison

Package VideoComparison Version 0.15 Date 2015-07-24 Title Video Comparison Tool Package VideoComparison July 25, 2015 Author Silvia Espinosa, Joaquin Ordieres, Antonio Bello, Jose Maria Perez Maintainer Joaquin Ordieres

More information

Package plan. R topics documented: February 20, 2015

Package plan. R topics documented: February 20, 2015 Package plan February 20, 2015 Version 0.4-2 Date 2013-09-29 Title Tools for project planning Author Maintainer Depends R (>= 0.99) Supports the creation of burndown

More information

Package pdfetch. R topics documented: July 19, 2015

Package pdfetch. R topics documented: July 19, 2015 Package pdfetch July 19, 2015 Imports httr, zoo, xts, XML, lubridate, jsonlite, reshape2 Type Package Title Fetch Economic and Financial Time Series Data from Public Sources Version 0.1.7 Date 2015-07-15

More information

Package whoapi. R topics documented: June 26, 2015. Type Package Title A 'Whoapi' API Client Version 0.1.0 Date 2015-06-16 Author Oliver Keyes

Package whoapi. R topics documented: June 26, 2015. Type Package Title A 'Whoapi' API Client Version 0.1.0 Date 2015-06-16 Author Oliver Keyes Type Package Title A 'Whoapi' API Client Version 0.1.0 Date 2015-06-16 Author Oliver Keyes Package whoapi June 26, 2015 Maintainer Oliver Keyes Retrieve data from the 'Whoapi' (https://whoapi.com)

More information

Important Steps to Becoming an MA/MS or PhD in Educational Psychology. 2. It is critical to do well in your courses

Important Steps to Becoming an MA/MS or PhD in Educational Psychology. 2. It is critical to do well in your courses Important Steps to Becoming an MA/MS or PhD in Educational Psychology 1. Take the right courses Courses to take as an undergraduate, besides typical PSY courses (Intro, Research Methods, Stats): Any Education

More information

If your schedule allows you might consider joining ROTC.

If your schedule allows you might consider joining ROTC. Important Steps to Becoming an MA/MS or PhD in Military Psychology 1. Take the right courses Courses to take as an undergraduate, besides typical PSY courses (Intro, Research Methods, Stats): Personality

More information

Package cgdsr. August 27, 2015

Package cgdsr. August 27, 2015 Type Package Package cgdsr August 27, 2015 Title R-Based API for Accessing the MSKCC Cancer Genomics Data Server (CGDS) Version 1.2.5 Date 2015-08-25 Author Anders Jacobsen Maintainer Augustin Luna

More information

The new Verbal Reasoning and Quantitative Reasoning score scales:

The new Verbal Reasoning and Quantitative Reasoning score scales: Better by Design The new Verbal Reasoning and Quantitative Reasoning score scales: A helpful overview of what you need to know Inside: An in-depth look at the new 130 170 score scales Guidance on making

More information

Important Steps to a Career in Higher Education (MA/MS or or PhD)

Important Steps to a Career in Higher Education (MA/MS or or PhD) Important Steps to a Career in Higher Education (MA/MS or or PhD) 1. Take the right courses Courses to take as an undergraduate, besides typical PSY courses (Intro, Research Methods, Stats): PSY courses

More information

Graduate Admissions for a More Diverse Student Body Fall 2011

Graduate Admissions for a More Diverse Student Body Fall 2011 Graduate Admissions for a More Diverse Student Body Fall 2011 Joseph L. Brown, PhD Stanford University School of Humanities & Sciences Acceptable Practices for Graduate Admissions Consider all applicants

More information

Department of Counseling, Leadership & Special Education Missouri State University Counseling Masters Program Application Instructions:

Department of Counseling, Leadership & Special Education Missouri State University Counseling Masters Program Application Instructions: Department of Counseling, Leadership & Special Education Missouri State University Counseling Masters Program Application Instructions: In order to be considered for admission to the Missouri State University

More information

Package fimport. February 19, 2015

Package fimport. February 19, 2015 Version 3000.82 Revision 5455 Date 2013-03-15 Package fimport February 19, 2015 Title Rmetrics - Economic and Financial Data Import Author Diethelm Wuertz and many others Depends R (>= 2.13.0), methods,

More information

Package hoarder. June 30, 2015

Package hoarder. June 30, 2015 Type Package Title Information Retrieval for Genetic Datasets Version 0.1 Date 2015-06-29 Author [aut, cre], Anu Sironen [aut] Package hoarder June 30, 2015 Maintainer Depends

More information

CHANGE DOCTORAL DEGREE PROGRAM FORM

CHANGE DOCTORAL DEGREE PROGRAM FORM GENERAL INFORMATION College: Nursing Department: NA Current Major Name: Nursing Proposed Major Name: no change Current Degree Title: Doctor of Philosophy in Nursing Proposed Degree Title: no change Current

More information

Package dunn.test. January 6, 2016

Package dunn.test. January 6, 2016 Version 1.3.2 Date 2016-01-06 Package dunn.test January 6, 2016 Title Dunn's Test of Multiple Comparisons Using Rank Sums Author Alexis Dinno Maintainer Alexis Dinno

More information

UNR Undergraduate Degree Recipients

UNR Undergraduate Degree Recipients UNR Undergraduate Degree Recipients A Ten Year Profile Serge Herzog, PhD Director, Institutional Analysis University of Nevada, Reno Reno, NV 89557 serge@unr.edu Spring 27 Time to Degree Completion 1995

More information

Important Steps to Becoming a Masters of Social Work (MSW)

Important Steps to Becoming a Masters of Social Work (MSW) Important Steps to Becoming a Masters of Social Work (MSW) 1. Take the right courses Courses to take as an undergraduate, besides typical PSY courses (Intro, Research Methods, Stats): Personality Clinical

More information

NEXT Analytics Business Intelligence User Guide

NEXT Analytics Business Intelligence User Guide NEXT Analytics Business Intelligence User Guide This document provides an overview of the powerful business intelligence functions embedded in NEXT Analytics v5. These functions let you build more useful

More information

Interpreting GRE Scores: Reliability and Validity

Interpreting GRE Scores: Reliability and Validity Interpreting GRE Scores: Reliability and Validity Dr. Lesa Hoffman Department of Psychology University of Nebraska Lincoln All data from: GRE Guide to the Use of Scores 2010 2011 http://www.ets.org/s/gre/pdf/gre_guide.pdf

More information

Package tagcloud. R topics documented: July 3, 2015

Package tagcloud. R topics documented: July 3, 2015 Package tagcloud July 3, 2015 Type Package Title Tag Clouds Version 0.6 Date 2015-07-02 Author January Weiner Maintainer January Weiner Description Generating Tag and Word Clouds.

More information

Educational Training for Master s Degree Programs in Industrial-Organizational Psychology

Educational Training for Master s Degree Programs in Industrial-Organizational Psychology David Costanza The George Washington University Jennifer Kisamore University of Oklahoma-Tulsa This month s Education and Training in I-O Psychology column is based on an education forum the authors organized

More information

APPLICATION FOR GRADUATE STUDY IN PSYCHOLOGY

APPLICATION FOR GRADUATE STUDY IN PSYCHOLOGY APPLICATION FOR GRADUATE STUDY IN PSYCHOLOGY Terminal Master's Programs in Experimental Psychology Specializations: Behavior Analysis or Health Psychology Deadline: December 31, 2014 Complete this application

More information

Student Admissions, Outcomes, and Other Data

Student Admissions, Outcomes, and Other Data Student Admissions, Outcomes, and Other Data The PhD program in Clinical Psychology at Northwestern University Feinberg School of Medicine is accredited by the American Psychological Association (APA).

More information

IBM SPSS Statistics 20 Part 4: Chi-Square and ANOVA

IBM SPSS Statistics 20 Part 4: Chi-Square and ANOVA CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES IBM SPSS Statistics 20 Part 4: Chi-Square and ANOVA Summer 2013, Version 2.0 Table of Contents Introduction...2 Downloading the

More information

itunes Store Publisher User Guide Version 1.1

itunes Store Publisher User Guide Version 1.1 itunes Store Publisher User Guide Version 1.1 Version Date Author 1.1 10/09/13 William Goff Table of Contents Table of Contents... 2 Introduction... 3 itunes Console Advantages... 3 Getting Started...

More information

Package StockChina. January 30, 2016

Package StockChina. January 30, 2016 Type Package Package StockChina January 30, 2016 Title Real-Time Stock Price & Volume in China Market Version 0.3.1 Date 2016-01-30 Author Xiaodong Deng Maintainer Xiaodong Deng Description

More information

Student Admissions, Outcomes, and Other Data. University of Arkansas Doctoral Training Program in Clinical Psychology

Student Admissions, Outcomes, and Other Data. University of Arkansas Doctoral Training Program in Clinical Psychology Student Admissions, s, and Other Data University of Arkansas Doctoral Training Program in Clinical Psychology The Ph.D. program in Clinical Psychology at the University of Arkansas is fully accredited

More information

Package bigrf. February 19, 2015

Package bigrf. February 19, 2015 Version 0.1-11 Date 2014-05-16 Package bigrf February 19, 2015 Title Big Random Forests: Classification and Regression Forests for Large Data Sets Maintainer Aloysius Lim OS_type

More information

Package cpm. July 28, 2015

Package cpm. July 28, 2015 Package cpm July 28, 2015 Title Sequential and Batch Change Detection Using Parametric and Nonparametric Methods Version 2.2 Date 2015-07-09 Depends R (>= 2.15.0), methods Author Gordon J. Ross Maintainer

More information

NextGen Admissions. Administrator Manual. Revised 11/3/2014

NextGen Admissions. Administrator Manual. Revised 11/3/2014 NextGen Admissions Administrator Manual Revised 11/3/2014 Table of Contents Accessing NextGen Admissions...1 Program Setup..1 Adding Faculty Reviewers.. 10 School Rankings 13 Creating Email Templates..15

More information

1.5.3 Project 3: Traffic Monitoring

1.5.3 Project 3: Traffic Monitoring 1.5.3 Project 3: Traffic Monitoring This project aims to provide helpful information about traffic in a given geographic area based on the history of traffic patterns, current weather, and time of the

More information

DON Program Evaluation Plan 1

DON Program Evaluation Plan 1 DON Program Evaluation Plan 1 Western Carolina University College of Applied Sciences Department of Nursing Program Assessment Plan for Academic Year 2006-2007 Department: Programs: Name of Person Completing

More information

Package RCassandra. R topics documented: February 19, 2015. Version 0.1-3 Title R/Cassandra interface

Package RCassandra. R topics documented: February 19, 2015. Version 0.1-3 Title R/Cassandra interface Version 0.1-3 Title R/Cassandra interface Package RCassandra February 19, 2015 Author Simon Urbanek Maintainer Simon Urbanek This packages provides

More information

Package sjdbc. R topics documented: February 20, 2015

Package sjdbc. R topics documented: February 20, 2015 Package sjdbc February 20, 2015 Version 1.5.0-71 Title JDBC Driver Interface Author TIBCO Software Inc. Maintainer Stephen Kaluzny Provides a database-independent JDBC interface. License

More information

Oracle Data Miner (Extension of SQL Developer 4.0)

Oracle Data Miner (Extension of SQL Developer 4.0) An Oracle White Paper September 2013 Oracle Data Miner (Extension of SQL Developer 4.0) Integrate Oracle R Enterprise Mining Algorithms into a workflow using the SQL Query node Denny Wong Oracle Data Mining

More information

Advice for Applying to Grad School in Economics

Advice for Applying to Grad School in Economics Advice for Applying to Grad School in Economics Disclaimer: These are just opinions, and some people may disagree with the claims here. You should seek opinions from your advisors. Choosing classes Graduate

More information

Exploratory Data Analysis and Plotting

Exploratory Data Analysis and Plotting Exploratory Data Analysis and Plotting The purpose of this handout is to introduce you to working with and manipulating data in R, as well as how you can begin to create figures from the ground up. 1 Importing

More information

Legal Informatics Final Paper Submission Creating a Legal-Focused Search Engine I. BACKGROUND II. PROBLEM AND SOLUTION

Legal Informatics Final Paper Submission Creating a Legal-Focused Search Engine I. BACKGROUND II. PROBLEM AND SOLUTION Brian Lao - bjlao Karthik Jagadeesh - kjag Legal Informatics Final Paper Submission Creating a Legal-Focused Search Engine I. BACKGROUND There is a large need for improved access to legal help. For example,

More information

2015 MBA Applicant Survey

2015 MBA Applicant Survey 2015 MBA Applicant Survey Shaping conversations about the MBA admissions process since 2009 Working draft, released 6/15 9:00am Executive summary Survey respondents continue to favor traditional MBA programs

More information

Getting into Graduate School and Life After. Presented By: Dr. Karen Pressley Dr. Sheryl Reminger Dr. Michele Miller

Getting into Graduate School and Life After. Presented By: Dr. Karen Pressley Dr. Sheryl Reminger Dr. Michele Miller Getting into Graduate School and Life After Presented By: Dr. Karen Pressley Dr. Sheryl Reminger Dr. Michele Miller Overview What criteria do graduate schools use to make decisions? What are personal statements?

More information

MSIS Application Instructions

MSIS Application Instructions MSIS Application Instructions Before submitting your application, please read these instructions carefully. IMPORTANT INFORMATION Deadlines for admission are posted to the ISGP website listed above. Separate

More information

Prediction of Academic Achievement in an NATA-Approved Graduate Athletic Training Education Program

Prediction of Academic Achievement in an NATA-Approved Graduate Athletic Training Education Program Prediction of Academic Achievement in an NATA-Approved Graduate Athletic Training Education Program By: Douglas R. Keskula, PhD, PT, ATC, Paula G. Sammarone, EdD, ATC, and David H. Perrin, PhD, ATC * Keskula,

More information

Package GSA. R topics documented: February 19, 2015

Package GSA. R topics documented: February 19, 2015 Package GSA February 19, 2015 Title Gene set analysis Version 1.03 Author Brad Efron and R. Tibshirani Description Gene set analysis Maintainer Rob Tibshirani Dependencies impute

More information

Package gazepath. April 1, 2015

Package gazepath. April 1, 2015 Type Package Package gazepath April 1, 2015 Title Gazepath Transforms Eye-Tracking Data into Fixations and Saccades Version 1.0 Date 2015-03-03 Author Daan van Renswoude Maintainer Daan van Renswoude

More information

Master s Program, GSICCS, Waseda University Last updated: May, 2015. English Language Proficiency Certificate

Master s Program, GSICCS, Waseda University Last updated: May, 2015. English Language Proficiency Certificate FAQ Class What are the requirements to complete the master s program? Are the classes taught in English? When are the classes held? Students must complete at least 2 years of study, earning at least 30

More information

Andrea Renwanz-Boyle, DNSc Associate Professor & Director, FNP Program San Francisco State University School of Nursing April 13, 2011

Andrea Renwanz-Boyle, DNSc Associate Professor & Director, FNP Program San Francisco State University School of Nursing April 13, 2011 Andrea Renwanz-Boyle, DNSc Associate Professor & Director, FNP Program San Francisco State University School of Nursing April 13, 2011 Educational Options in Nursing 1. Associate Degree Programs 2. Bachelor

More information

Uploading Ad Cost, Clicks and Impressions to Google Analytics

Uploading Ad Cost, Clicks and Impressions to Google Analytics Uploading Ad Cost, Clicks and Impressions to Google Analytics This document describes the Google Analytics cost data upload capabilities of NEXT Analytics v5. Step 1. Planning Your Upload Google Analytics

More information

APPLICATION TIPS CHAT. August 27, 2013. Mba.ale.edu/admissions

APPLICATION TIPS CHAT. August 27, 2013. Mba.ale.edu/admissions APPLICATION TIPS CHAT August 27, 2013 Mba.ale.edu/admissions CHAT LOGISTICS This is an audio presentation Make sure your speakers are turned on or you re using a headset If you have audio issues, try resetting

More information

Step 1: Prepare to Apply

Step 1: Prepare to Apply SOUTH CAROLINA APPLICATION GUIDE FOR FRESHMEN Applying to the University of South Carolina is easy as long as you know what steps to take, and when to take them. You ll save yourself time and the application

More information

Package sendmailr. February 20, 2015

Package sendmailr. February 20, 2015 Version 1.2-1 Title send email using R Package sendmailr February 20, 2015 Package contains a simple SMTP client which provides a portable solution for sending email, including attachment, from within

More information

Wave Analytics Data Integration

Wave Analytics Data Integration Wave Analytics Data Integration Salesforce, Spring 16 @salesforcedocs Last updated: April 28, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

Graduate School Info & Career Info for Psych majors. Presented by Psi Chi and the Psychology Department, 2012

Graduate School Info & Career Info for Psych majors. Presented by Psi Chi and the Psychology Department, 2012 Graduate School Info & Career Info for Psych majors Presented by Psi Chi and the Psychology Department, 2012 Topics We Will Cover How do I decide if grad school is right for me? Are there books that the

More information

IHE Master's Performance Report

IHE Master's Performance Report IHE Master's Performance Report Greensboro College 2010-2011 Overview of Master's Program Greensboro College offers the Master of Education degree in Elementary Education and Special Education. Within

More information

These two errors are particularly damaging to the perception by students of our program and hurt our recruiting efforts.

These two errors are particularly damaging to the perception by students of our program and hurt our recruiting efforts. Critical Errors in the National Research Council s Ranking of UWM s Economics Program January, 2011 Prepared by Associate Professor Scott Adams, Director of Graduate Studies The National Research Council

More information

Package bigdata. R topics documented: February 19, 2015

Package bigdata. R topics documented: February 19, 2015 Type Package Title Big Data Analytics Version 0.1 Date 2011-02-12 Author Han Liu, Tuo Zhao Maintainer Han Liu Depends glmnet, Matrix, lattice, Package bigdata February 19, 2015 The

More information

Letter of interest (addressing why you want to pursue this degree) Application (from the Counseling and Assessment Ed.S. program)

Letter of interest (addressing why you want to pursue this degree) Application (from the Counseling and Assessment Ed.S. program) Department of Counseling, Leadership & Special Education Missouri State Application for Admission To the Education Specialist (Ed.S.) degree in Counseling and Assessment Instructions In order to be considered

More information

Becoming a Clinical Psychologist. A Long and Winding Journey. Stages to CP 8/18/2009. A Road Map

Becoming a Clinical Psychologist. A Long and Winding Journey. Stages to CP 8/18/2009. A Road Map Becoming a Clinical Psychologist A Road Map A Long and Winding Journey To become a clinical psychologist is often at least a 10 year time commitment So why do it? Many enjoy the mix of science and practice,

More information

Package TSfame. February 15, 2013

Package TSfame. February 15, 2013 Package TSfame February 15, 2013 Version 2012.8-1 Title TSdbi extensions for fame Description TSfame provides a fame interface for TSdbi. Comprehensive examples of all the TS* packages is provided in the

More information

COLLEGE OF SCIENCES AND HUMANITIES Muncie, Indiana 47306 DEPARTMENT OF SPEECH PATHOLOGY AND AUDIOLOGY Phone: 765-285-8161

COLLEGE OF SCIENCES AND HUMANITIES Muncie, Indiana 47306 DEPARTMENT OF SPEECH PATHOLOGY AND AUDIOLOGY Phone: 765-285-8161 COLLEGE OF SCIENCES AND HUMANITIES Muncie, Indiana 47306 DEPARTMENT OF SPEECH PATHOLOGY AND AUDIOLOGY Phone: 765-285-8161 Dear Prospective Graduate Student: Thank you for your interest in the Ball State

More information

Downloading & Using Data from the STORET Warehouse: An Exercise

Downloading & Using Data from the STORET Warehouse: An Exercise Downloading & Using Data from the STORET Warehouse: An Exercise August 2012 This exercise addresses querying or searching for specific water resource data, and the respective methods used in collecting

More information

An Evaluation of Kansas City Reading Programs for Turn the Page Kansas City

An Evaluation of Kansas City Reading Programs for Turn the Page Kansas City February 28, 2014 An Evaluation of Kansas City Reading Programs for Turn the Page Kansas City Leigh Anne Taylor Knight, Ed. D. Hajar Aghababa, Ph. D. Jiaxi Quan, Ph.D. Pat Oslund, M.A. Technical Assistance:

More information

The Graduate School & International Admissions The University of Northern Colorado 501 20 th Street Campus Box 135 Greeley, CO 80639

The Graduate School & International Admissions The University of Northern Colorado 501 20 th Street Campus Box 135 Greeley, CO 80639 Counseling Psychology Doctor of Philosophy (PhD) Degree An American Psychological Association (APA) Accredited Program Dear Prospective Applicant: Thank you for your interest in the Counseling Psychology

More information

SUNY Health Science Center At Brooklyn (Downstate) School of Graduate Studies and Polytechnic University joint Ph.D. Program in Biomedical Engineering

SUNY Health Science Center At Brooklyn (Downstate) School of Graduate Studies and Polytechnic University joint Ph.D. Program in Biomedical Engineering Planned Matriculation Date Appl# - SUNY Health Science Center At Brooklyn (Downstate) School of Graduate Studies and Polytechnic University joint Ph.D. Program in Biomedical Engineering Please TYPE or

More information

Basic Guide to Graduate. School. The Center for Land Use Education College of Natural Resources University of Wisconsin-Stevens Point

Basic Guide to Graduate. School. The Center for Land Use Education College of Natural Resources University of Wisconsin-Stevens Point Written by: Rebecca Mattano October, 2004 Published by the Center for Land Use Education For: The Undergraduate Internship Program Basic Guide to Graduate The Center for Land Use Education College of Natural

More information

APPLICATION DEADLINES:

APPLICATION DEADLINES: CHECKLIST GRADUATE ADMISSIONS PROCEDURE PSYCHOLOGY DEPARTMENT IOWA STATE UNIVERSITY 1. ISU Graduate Application - Online PLEASE submit the ISU Graduate Application, fee, financial statement, and official

More information

Package bizdays. March 13, 2015

Package bizdays. March 13, 2015 Title Business Days Calculations and Utilities Package bizdays March 13, 2015 Business days culations based on a list of holidays and nonworking weekdays. Quite useful for fixed income and derivatives

More information

This software agent helps industry professionals review compliance case investigations, find resolutions, and improve decision making.

This software agent helps industry professionals review compliance case investigations, find resolutions, and improve decision making. Lost in a sea of data? Facing an external audit? Or just wondering how you re going meet the challenges of the next regulatory law? When you need fast, dependable support and company-specific solutions

More information

1. A completed application form to the Office of Graduate and Continuing Studies, including official undergraduate transcripts.

1. A completed application form to the Office of Graduate and Continuing Studies, including official undergraduate transcripts. 1 The Master of Arts degree in Communication is designed to prepare graduate students for professional and academic careers. It also encourages thoughtful and continuing study in subjects of the student's

More information

DC STARS Guide for Secondary School Counselors

DC STARS Guide for Secondary School Counselors November 2012 DC STARS Guide for Secondary School Counselors 1200 First Street, NE Washington, DC 20002 T 202.442.9281 F 202.442.5728 https://dcstars.k12.in.dc.gov/ Table of Contents OVERVIEW... 3 OBJECTIVES...

More information

Package RedditExtractoR

Package RedditExtractoR Type Package Title Reddit Data Extraction Toolkit Version 2.0.2 Package RedditExtractoR December 5, 2015 Imports RJSONIO, utils, igraph, grdevices, graphics Depends R (>= 3.2.0) Date 2015-12-05 Author

More information

2007 University Libraries of Notre Dame

2007 University Libraries of Notre Dame Introduction Ben Heet, Electronic Resources Specialist, bheet1@nd.edu Mark Dehmlow, Electronic Services Librarian, mdehmlow@nd.edu Special Thanks to the Tom Lehman, the Web Presence Improvement Team, and

More information

Package COSINE. February 19, 2015

Package COSINE. February 19, 2015 Type Package Title COndition SpecIfic sub-network Version 2.1 Date 2014-07-09 Author Package COSINE February 19, 2015 Maintainer Depends R (>= 3.1.0), MASS,genalg To identify

More information

VCU Premedical Graduate Certificate Program. Frequently Asked Questions

VCU Premedical Graduate Certificate Program. Frequently Asked Questions Requirements to apply How to apply 1. What are the requirements to apply? 2. Is there a minimum GPA or MCAT cutoff? 3. What materials do I need to submit for a complete application? 4. If I am approved

More information

Intro to SQL and One-to-Many Relationships

Intro to SQL and One-to-Many Relationships Massachusetts Institute of Technology Department of Urban Studies and Planning 11.520: A Workshop on Geographic Information Systems 11.188: Urban Planning and Social Science Laboratory Intro to SQL and

More information

Package polynom. R topics documented: June 24, 2015. Version 1.3-8

Package polynom. R topics documented: June 24, 2015. Version 1.3-8 Version 1.3-8 Package polynom June 24, 2015 Title A Collection of Functions to Implement a Class for Univariate Polynomial Manipulations A collection of functions to implement a class for univariate polynomial

More information

FAQ. Class. Admissions. http://www.waseda.jp/gsiccs/admissions/application_en.html. What are the requirements to complete the master s program?

FAQ. Class. Admissions. http://www.waseda.jp/gsiccs/admissions/application_en.html. What are the requirements to complete the master s program? FAQ Class What are the requirements to complete the master s program? Are the classes taught in English? When are the classes held? Students must complete at least 2 years of study, earning at least 30

More information

Frequently Asked Questions About Using The GRE Search Service

Frequently Asked Questions About Using The GRE Search Service Frequently Asked Questions About Using The GRE Search Service General Information Who can use the GRE Search Service? Institutions eligible to participate in the GRE Search Service include (1) institutions

More information

Prof. Elizabeth Raymond Department of Chemistry Western Washington University

Prof. Elizabeth Raymond Department of Chemistry Western Washington University Prof. Elizabeth Raymond Department of Chemistry Western Washington University Keys to Success 1. Be informed. 2. Do not self select. 3. Find something that interests you...... have FUN, but do not limit

More information

Applicant Demographics: 81% female, 19% male 94% White, 5% African American, 1% other/not indicated Average Undergraduate GPA = 3.

Applicant Demographics: 81% female, 19% male 94% White, 5% African American, 1% other/not indicated Average Undergraduate GPA = 3. Clinical Mental Health Counseling Program Evaluation Annual Report Fall 2015 What follows is a summary of CMH program and student data reviewed along with recommendations and/or specific modifications

More information

Package TRADER. February 10, 2016

Package TRADER. February 10, 2016 Type Package Package TRADER February 10, 2016 Title Tree Ring Analysis of Disturbance Events in R Version 1.2-1 Date 2016-02-10 Author Pavel Fibich , Jan Altman ,

More information

Predicting the Performance of a First Year Graduate Student

Predicting the Performance of a First Year Graduate Student Predicting the Performance of a First Year Graduate Student Luís Francisco Aguiar Universidade do Minho - NIPE Abstract In this paper, I analyse, statistically, if GRE scores are a good predictor of the

More information

Package urltools. October 11, 2015

Package urltools. October 11, 2015 Type Package Package urltools October 11, 2015 Title Vectorised Tools for URL Handling and Parsing Version 1.3.2 Date 2015-10-09 Author Oliver Keyes [aut, cre], Jay Jacobs [aut, cre], Mark Greenaway [ctb],

More information

(City) (State) (Zip Code) (Phone) Permanent Address (If different) (Street) (Apt #) (City) (State) (Zip Code) (Phone)

(City) (State) (Zip Code) (Phone) Permanent Address (If different) (Street) (Apt #) (City) (State) (Zip Code) (Phone) Georgia Department of Public Health Dietetic Internship Program Application Verify application requirements of each program to which you wish to apply. Not all programs use this form. All information must

More information

2016 Rankings. Released March 2015

2016 Rankings. Released March 2015 US News & World Report 2016 Rankings Released March 2015 US News & World Report Rankings 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 89 77 80 77 76 70 77 76 71 76 N = 187 N = 191 N = 198 N = 189

More information

Middle Name Found on Part I of Application (if applicable - may also use maiden name).

Middle Name Found on Part I of Application (if applicable - may also use maiden name). PROCEDURES: ADMISSIONS Filling out Coding Sheet/Checklist ------------------------------------- Last Name Found on Part I of Application. First Name Found on Part I of Application. Middle Name Found on

More information

Envirofacts API Cory Wagner, US EPA

Envirofacts API Cory Wagner, US EPA Envirofacts API Cory Wagner, US EPA 2015 Exchange Network National Meeting Supporting the Business of Environmental Protection September 29 October 1, 2015 Sheraton Philadelphia Society Hill Hotel Philadelphia,

More information

Package OECD. R topics documented: January 17, 2016. Type Package Title Search and Extract Data from the OECD Version 0.2.

Package OECD. R topics documented: January 17, 2016. Type Package Title Search and Extract Data from the OECD Version 0.2. Type Package Title Search and Extract Data from the OECD Version 0.2.2 Date 2016-01-17 Package OECD January 17, 2016 Search and extract data from the OECD. License CC0 URL https://www.github.com/expersso/oecd

More information

Instructions for Completion of Graduate Application: Doctoral Program in Clinical Psychology

Instructions for Completion of Graduate Application: Doctoral Program in Clinical Psychology Instructions for Completion of Graduate Application: Doctoral Program in Clinical Psychology Applications are due by November 20, 2015. Clinical Psychology Doctoral Program Department of Psychological

More information