R/subject_areas.R

Defines functions subject_areas subject_area_codes

Documented in subject_area_codes subject_areas

#' Subject Areas
#'
#' @return Character vector of subject areas
#' @export
#' @note
#' See
#' \url{https://service.elsevier.com/app/answers/detail/a_id/15181/supporthub/scopus/related/1/}
subject_areas = function() {
  c("AGRI", "ARTS", "BIOC", "BUSI", "CENG", "CHEM", "COMP", "DECI",
    "DENT", "EART", "ECON", "ENER", "ENGI", "ENVI", "HEAL", "IMMU",
    "MATE", "MATH", "MEDI", "NEUR", "NURS", "PHAR", "PHYS", "PSYC",
    "SOCI", "VETE", "MULT")
}

#' @export
#' @rdname subject_areas
subject_area_codes = function() {
  c(1000L, 1100L, 1101L, 1102L, 1103L, 1104L, 1105L, 1106L, 1107L,
    1108L, 1109L, 1110L, 1111L, 1200L, 1201L, 1202L, 1203L, 1204L,
    1205L, 1206L, 1207L, 1208L, 1209L, 1210L, 1211L, 1212L, 1213L,
    1300L, 1301L, 1302L, 1303L, 1304L, 1305L, 1306L, 1307L, 1308L,
    1309L, 1310L, 1311L, 1312L, 1313L, 1314L, 1315L, 1400L, 1401L,
    1402L, 1403L, 1404L, 1405L, 1406L, 1407L, 1408L, 1409L, 1410L,
    1500L, 1501L, 1502L, 1503L, 1504L, 1505L, 1506L, 1507L, 1508L,
    1600L, 1601L, 1602L, 1603L, 1604L, 1605L, 1606L, 1607L, 1700L,
    1701L, 1702L, 1703L, 1704L, 1705L, 1706L, 1707L, 1708L, 1709L,
    1710L, 1711L, 1712L, 1800L, 1801L, 1802L, 1803L, 1804L, 1900L,
    1901L, 1902L, 1903L, 1904L, 1905L, 1906L, 1907L, 1908L, 1909L,
    1910L, 1911L, 1912L, 1913L, 2000L, 2001L, 2002L, 2003L, 2100L,
    2101L, 2102L, 2103L, 2104L, 2105L, 2200L, 2201L, 2202L, 2203L,
    2204L, 2205L, 2206L, 2207L, 2208L, 2209L, 2210L, 2211L, 2212L,
    2213L, 2214L, 2215L, 2216L, 2300L, 2301L, 2302L, 2303L, 2304L,
    2305L, 2306L, 2307L, 2308L, 2309L, 2310L, 2311L, 2312L, 2400L,
    2401L, 2402L, 2403L, 2404L, 2405L, 2406L, 2500L, 2501L, 2502L,
    2503L, 2504L, 2505L, 2506L, 2507L, 2508L, 2600L, 2601L, 2602L,
    2603L, 2604L, 2605L, 2606L, 2607L, 2608L, 2609L, 2610L, 2611L,
    2612L, 2613L, 2614L, 2700L, 2701L, 2702L, 2703L, 2704L, 2705L,
    2706L, 2707L, 2708L, 2709L, 2710L, 2711L, 2712L, 2713L, 2714L,
    2715L, 2716L, 2717L, 2718L, 2719L, 2720L, 2721L, 2722L, 2723L,
    2724L, 2725L, 2726L, 2727L, 2728L, 2729L, 2730L, 2731L, 2732L,
    2733L, 2734L, 2735L, 2736L, 2737L, 2738L, 2739L, 2740L, 2741L,
    2742L, 2743L, 2744L, 2745L, 2746L, 2747L, 2748L, 2800L, 2801L,
    2802L, 2803L, 2804L, 2805L, 2806L, 2807L, 2808L, 2809L, 2900L,
    2901L, 2902L, 2903L, 2904L, 2905L, 2906L, 2907L, 2908L, 2909L,
    2910L, 2911L, 2912L, 2913L, 2914L, 2915L, 2916L, 2917L, 2918L,
    2919L, 2920L, 2921L, 2922L, 2923L, 3000L, 3001L, 3002L, 3003L,
    3004L, 3005L, 3100L, 3101L, 3102L, 3103L, 3104L, 3105L, 3106L,
    3107L, 3108L, 3109L, 3110L, 3200L, 3201L, 3202L, 3203L, 3204L,
    3205L, 3206L, 3207L, 3300L, 3301L, 3302L, 3303L, 3304L, 3305L,
    3306L, 3307L, 3308L, 3309L, 3310L, 3311L, 3312L, 3313L, 3314L,
    3315L, 3316L, 3317L, 3318L, 3319L, 3320L, 3321L, 3322L, 3400L,
    3401L, 3402L, 3403L, 3404L, 3500L, 3501L, 3502L, 3503L, 3504L,
    3505L, 3506L, 3600L, 3601L, 3602L, 3603L, 3604L, 3605L, 3606L,
    3607L, 3608L, 3609L, 3610L, 3611L, 3612L, 3613L, 3614L, 3615L,
    3616L)
}

Try the rscopus package in your browser

Any scripts or data that you put into this service are public.

rscopus documentation built on Sept. 18, 2019, 1:03 a.m.