1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474
|
#' Shortest (directed or undirected) paths between vertices
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `get.shortest.paths()` was renamed to [shortest_paths()] to create a more
#' consistent API.
#' @inheritParams shortest_paths
#' @keywords internal
#' @export
get.shortest.paths <- function(
graph,
from,
to = V(graph),
mode = c("out", "all", "in"),
weights = NULL,
output = c("vpath", "epath", "both"),
predecessors = FALSE,
inbound.edges = FALSE,
algorithm = c("automatic", "unweighted", "dijkstra", "bellman-ford")
) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "get.shortest.paths()", "shortest_paths()")
shortest_paths(
graph = graph,
from = from,
to = to,
mode = mode,
weights = weights,
output = output,
predecessors = predecessors,
inbound.edges = inbound.edges,
algorithm = algorithm
)
} # nocov end
#' Shortest (directed or undirected) paths between vertices
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `get.all.shortest.paths()` was renamed to [all_shortest_paths()] to create a more
#' consistent API.
#' @inheritParams all_shortest_paths
#' @keywords internal
#' @export
get.all.shortest.paths <- function(
graph,
from,
to = V(graph),
mode = c("out", "all", "in"),
weights = NULL
) {
# nocov start
lifecycle::deprecate_soft(
"2.0.0",
"get.all.shortest.paths()",
"all_shortest_paths()"
)
all_shortest_paths(
graph = graph,
from = from,
to = to,
mode = mode,
weights = weights
)
} # nocov end
#' Diameter of a graph
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `get.diameter()` was renamed to [get_diameter()] to create a more
#' consistent API.
#' @inheritParams get_diameter
#' @keywords internal
#' @export
get.diameter <- function(
graph,
directed = TRUE,
unconnected = TRUE,
weights = NULL
) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "get.diameter()", "get_diameter()")
get_diameter(
graph = graph,
directed = directed,
unconnected = unconnected,
weights = weights
)
} # nocov end
#' Convert a general graph into a forest
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `unfold.tree()` was renamed to [unfold_tree()] to create a more
#' consistent API.
#' @inheritParams unfold_tree
#' @keywords internal
#' @export
unfold.tree <- function(graph, mode = c("all", "out", "in", "total"), roots) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "unfold.tree()", "unfold_tree()")
unfold_tree(graph = graph, mode = mode, roots = roots)
} # nocov end
#' Topological sorting of vertices in a graph
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `topological.sort()` was renamed to [topo_sort()] to create a more
#' consistent API.
#' @inheritParams topo_sort
#' @keywords internal
#' @export
topological.sort <- function(graph, mode = c("out", "all", "in")) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "topological.sort()", "topo_sort()")
topo_sort(graph = graph, mode = mode)
} # nocov end
#' Shortest (directed or undirected) paths between vertices
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `shortest.paths()` was renamed to [distances()] to create a more
#' consistent API.
#' @inheritParams distances
#' @keywords internal
#' @export
shortest.paths <- function(
graph,
v = V(graph),
to = V(graph),
mode = c("all", "out", "in"),
weights = NULL,
algorithm = c(
"automatic",
"unweighted",
"dijkstra",
"bellman-ford",
"johnson"
)
) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "shortest.paths()", "distances()")
algorithm <- igraph.match.arg(algorithm)
mode <- igraph.match.arg(mode)
distances(
graph = graph,
v = v,
to = to,
mode = mode,
weights = weights,
algorithm = algorithm
)
} # nocov end
#' Neighborhood of graph vertices
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `neighborhood.size()` was renamed to [ego_size()] to create a more
#' consistent API.
#' @inheritParams ego_size
#' @keywords internal
#' @export
neighborhood.size <- function(
graph,
order = 1,
nodes = V(graph),
mode = c("all", "out", "in"),
mindist = 0
) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "neighborhood.size()", "ego_size()")
ego_size(
graph = graph,
order = order,
nodes = nodes,
mode = mode,
mindist = mindist
)
} # nocov end
#' Matching
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `maximum.bipartite.matching()` was renamed to [max_bipartite_match()] to create a more
#' consistent API.
#' @inheritParams max_bipartite_match
#' @keywords internal
#' @export
maximum.bipartite.matching <- function(
graph,
types = NULL,
weights = NULL,
eps = .Machine$double.eps
) {
# nocov start
lifecycle::deprecate_soft(
"2.0.0",
"maximum.bipartite.matching()",
"max_bipartite_match()"
)
max_bipartite_match(
graph = graph,
types = types,
weights = weights,
eps = eps
)
} # nocov end
#' Find mutual edges in a directed graph
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `is.mutual()` was renamed to [which_mutual()] to create a more
#' consistent API.
#' @inheritParams which_mutual
#' @keywords internal
#' @export
is.mutual <- function(graph, eids = E(graph), loops = TRUE) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "is.mutual()", "which_mutual()")
which_mutual(graph = graph, eids = eids, loops = loops)
} # nocov end
#' Find the multiple or loop edges in a graph
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `is.multiple()` was renamed to [which_multiple()] to create a more
#' consistent API.
#' @inheritParams which_multiple
#' @keywords internal
#' @export
is.multiple <- function(graph, eids = E(graph)) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "is.multiple()", "which_multiple()")
which_multiple(graph = graph, eids = eids)
} # nocov end
#' Matching
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `is.maximal.matching()` was renamed to [is_max_matching()] to create a more
#' consistent API.
#' @inheritParams is_max_matching
#' @keywords internal
#' @export
is.maximal.matching <- function(graph, matching, types = NULL) {
# nocov start
lifecycle::deprecate_soft(
"2.0.0",
"is.maximal.matching()",
"is_max_matching()"
)
is_max_matching(graph = graph, matching = matching, types = types)
} # nocov end
#' Matching
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `is.matching()` was renamed to [is_matching()] to create a more
#' consistent API.
#' @inheritParams is_matching
#' @keywords internal
#' @export
is.matching <- function(graph, matching, types = NULL) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "is.matching()", "is_matching()")
is_matching(graph = graph, matching = matching, types = types)
} # nocov end
#' Find the multiple or loop edges in a graph
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `is.loop()` was renamed to [which_loop()] to create a more
#' consistent API.
#' @inheritParams which_loop
#' @keywords internal
#' @export
is.loop <- function(graph, eids = E(graph)) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "is.loop()", "which_loop()")
which_loop(graph = graph, eids = eids)
} # nocov end
#' Connected components of a graph
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `is.connected()` was renamed to [is_connected()] to create a more
#' consistent API.
#' @inheritParams is_connected
#' @keywords internal
#' @export
is.connected <- function(graph, mode = c("weak", "strong")) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "is.connected()", "is_connected()")
is_connected(graph = graph, mode = mode)
} # nocov end
#' Subgraph of a graph
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `induced.subgraph()` was renamed to [induced_subgraph()] to create a more
#' consistent API.
#' @inheritParams induced_subgraph
#' @keywords internal
#' @export
induced.subgraph <- function(
graph,
vids,
impl = c("auto", "copy_and_delete", "create_from_scratch")
) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "induced.subgraph()", "induced_subgraph()")
induced_subgraph(graph = graph, vids = vids, impl = impl)
} # nocov end
#' Find the multiple or loop edges in a graph
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `has.multiple()` was renamed to [any_multiple()] to create a more
#' consistent API.
#' @inheritParams any_multiple
#' @keywords internal
#' @export
has.multiple <- function(graph) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "has.multiple()", "any_multiple()")
any_multiple(graph = graph)
} # nocov end
#' Neighborhood of graph vertices
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `graph.neighborhood()` was renamed to [make_ego_graph()] to create a more
#' consistent API.
#' @inheritParams make_ego_graph
#' @keywords internal
#' @export
graph.neighborhood <- function(
graph,
order = 1,
nodes = V(graph),
mode = c("all", "out", "in"),
mindist = 0
) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "graph.neighborhood()", "make_ego_graph()")
make_ego_graph(
graph = graph,
order = order,
nodes = nodes,
mode = mode,
mindist = mindist
)
} # nocov end
#' Graph Laplacian
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `graph.laplacian()` was renamed to [laplacian_matrix()] to create a more
#' consistent API.
#' @inheritParams laplacian_matrix
#' @keywords internal
#' @export
graph.laplacian <- function(
graph,
normalized = FALSE,
weights = NULL,
sparse = igraph_opt("sparsematrices")
) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "graph.laplacian()", "laplacian_matrix()")
laplacian_matrix(
graph = graph,
normalized = normalized,
weights = weights,
sparse = sparse
)
} # nocov end
#' Average nearest neighbor degree
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `graph.knn()` was renamed to [knn()] to create a more
#' consistent API.
#' @inheritParams knn
#' @keywords internal
#' @export
graph.knn <- function(
graph,
vids = V(graph),
mode = c("all", "out", "in", "total"),
neighbor.degree.mode = c("all", "out", "in", "total"),
weights = NULL
) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "graph.knn()", "knn()")
knn(
graph = graph,
vids = vids,
mode = mode,
neighbor.degree.mode = neighbor.degree.mode,
weights = weights
)
} # nocov end
#' Depth-first search
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `graph.dfs()` was renamed to [dfs()] to create a more
#' consistent API.
#' @param father Logical scalar, whether to return the father of the vertices.
#' @inheritParams dfs
#' @keywords internal
#' @export
graph.dfs <- function(
graph,
root,
mode = c("out", "in", "all", "total"),
unreachable = TRUE,
order = TRUE,
order.out = FALSE,
father = FALSE,
dist = FALSE,
in.callback = NULL,
out.callback = NULL,
extra = NULL,
rho = parent.frame(),
neimode
) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "graph.dfs()", "dfs()")
dfs(
graph = graph,
root = root,
mode = mode,
unreachable = unreachable,
order = order,
order.out = order.out,
parent = father,
dist = dist,
in.callback = in.callback,
out.callback = out.callback,
extra = extra,
rho = rho,
neimode = neimode
)
} # nocov end
#' Graph density
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `graph.density()` was renamed to [edge_density()] to create a more
#' consistent API.
#' @inheritParams edge_density
#' @keywords internal
#' @export
graph.density <- function(graph, loops = FALSE) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "graph.density()", "edge_density()")
edge_density(graph = graph, loops = loops)
} # nocov end
#' K-core decomposition of graphs
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `graph.coreness()` was renamed to [coreness()] to create a more
#' consistent API.
#' @inheritParams coreness
#' @keywords internal
#' @export
graph.coreness <- function(graph, mode = c("all", "out", "in")) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "graph.coreness()", "coreness()")
coreness(graph = graph, mode = mode)
} # nocov end
#' Breadth-first search
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `graph.bfs()` was renamed to [bfs()] to create a more
#' consistent API.
#' @inheritParams bfs
#' @param father Logical scalar, whether to return the father of the vertices.
#' @keywords internal
#' @export
graph.bfs <- function(
graph,
root,
mode = c("out", "in", "all", "total"),
unreachable = TRUE,
restricted = NULL,
order = TRUE,
rank = FALSE,
father = FALSE,
pred = FALSE,
succ = FALSE,
dist = FALSE,
callback = NULL,
extra = NULL,
rho = parent.frame(),
neimode
) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "graph.bfs()", "bfs()")
bfs(
graph = graph,
root = root,
mode = mode,
unreachable = unreachable,
restricted = restricted,
order = order,
rank = rank,
parent = father,
pred = pred,
succ = succ,
dist = dist,
callback = callback,
extra = extra,
rho = rho,
neimode = neimode
)
} # nocov end
#' Diameter of a graph
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `farthest.nodes()` was renamed to [farthest_vertices()] to create a more
#' consistent API.
#' @inheritParams farthest_vertices
#' @keywords internal
#' @export
farthest.nodes <- function(
graph,
directed = TRUE,
unconnected = TRUE,
weights = NULL
) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "farthest.nodes()", "farthest_vertices()")
farthest_vertices(
graph = graph,
directed = directed,
unconnected = unconnected,
weights = weights
)
} # nocov end
#' Degree and degree distribution of the vertices
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `degree.distribution()` was renamed to [degree_distribution()] to create a more
#' consistent API.
#' @inheritParams degree_distribution
#' @keywords internal
#' @export
degree.distribution <- function(graph, cumulative = FALSE, ...) {
# nocov start
lifecycle::deprecate_soft(
"2.0.0",
"degree.distribution()",
"degree_distribution()"
)
degree_distribution(graph = graph, cumulative = cumulative, ...)
} # nocov end
#' Find the multiple or loop edges in a graph
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `count.multiple()` was renamed to [count_multiple()] to create a more
#' consistent API.
#' @inheritParams count_multiple
#' @keywords internal
#' @export
count.multiple <- function(graph, eids = E(graph)) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "count.multiple()", "count_multiple()")
count_multiple(graph = graph, eids = eids)
} # nocov end
#' Connected components of a graph
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `clusters()` was renamed to [components()] to create a more
#' consistent API.
#' @inheritParams components
#' @keywords internal
#' @export
clusters <- function(graph, mode = c("weak", "strong")) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "clusters()", "components()")
components(graph = graph, mode = mode)
} # nocov end
#' Shortest (directed or undirected) paths between vertices
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `average.path.length()` was renamed to [mean_distance()] to create a more
#' consistent API.
#' @inheritParams mean_distance
#' @keywords internal
#' @export
average.path.length <- function(
graph,
weights = NULL,
directed = TRUE,
unconnected = TRUE,
details = FALSE
) {
# nocov start
lifecycle::deprecate_soft("2.0.0", "average.path.length()", "mean_distance()")
mean_distance(
graph = graph,
weights = weights,
directed = directed,
unconnected = unconnected,
details = details
)
} # nocov end
# IGraph R package
# Copyright (C) 2005-2012 Gabor Csardi <csardi.gabor@gmail.com>
# 334 Harvard street, Cambridge, MA 02139 USA
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301 USA
#
###################################################################
###################################################################
# Structural properties
###################################################################
#' Diameter of a graph
#'
#' The diameter of a graph is the length of the longest geodesic.
#'
#' The diameter is calculated by using a breadth-first search like method.
#'
#' `get_diameter()` returns a path with the actual diameter. If there are
#' many shortest paths of the length of the diameter, then it returns the first
#' one found.
#'
#' `farthest_vertices()` returns two vertex ids, the vertices which are
#' connected by the diameter path.
#'
#' @param graph The graph to analyze.
#' @param directed Logical, whether directed or undirected paths are to be
#' considered. This is ignored for undirected graphs.
#' @param unconnected Logical, what to do if the graph is unconnected. If
#' FALSE, the function will return a number that is one larger the largest
#' possible diameter, which is always the number of vertices. If TRUE, the
#' diameters of the connected components will be calculated and the largest one
#' will be returned.
#' @param weights Optional positive weight vector for calculating weighted
#' distances. If the graph has a `weight` edge attribute, then this is
#' used by default.
#' @return A numeric constant for `diameter()`, a numeric vector for
#' `get_diameter()`. `farthest_vertices()` returns a list with two
#' entries:
#' \describe{
#' \item{`vertices`}{
#' The two vertices that are the farthest.
#' }
#' \item{`distance`}{
#' Their distance.
#' }
#' }
#' @author Gabor Csardi \email{csardi.gabor@@gmail.com}
#' @seealso [distances()]
#' @family paths
#' @export
#' @keywords graphs
#' @examples
#'
#' g <- make_ring(10)
#' g2 <- delete_edges(g, c(1, 2, 1, 10))
#' diameter(g2, unconnected = TRUE)
#' diameter(g2, unconnected = FALSE)
#'
#' ## Weighted diameter
#' set.seed(1)
#' g <- make_ring(10)
#' E(g)$weight <- sample(seq_len(ecount(g)))
#' diameter(g)
#' get_diameter(g)
#' diameter(g, weights = NA)
#' get_diameter(g, weights = NA)
#'
diameter <- function(
graph,
directed = TRUE,
unconnected = TRUE,
weights = NULL
) {
ensure_igraph(graph)
if (is.null(weights) && "weight" %in% edge_attr_names(graph)) {
weights <- E(graph)$weight
}
if (!is.null(weights) && any(!is.na(weights))) {
weights <- as.numeric(weights)
} else {
weights <- NULL
}
on.exit(.Call(R_igraph_finalizer))
.Call(
R_igraph_diameter,
graph,
as.logical(directed),
as.logical(unconnected),
weights
)
}
#' @rdname diameter
#' @export
get_diameter <- function(
graph,
directed = TRUE,
unconnected = TRUE,
weights = NULL
) {
ensure_igraph(graph)
if (is.null(weights) && "weight" %in% edge_attr_names(graph)) {
weights <- E(graph)$weight
}
if (!is.null(weights) && any(!is.na(weights))) {
weights <- as.numeric(weights)
} else {
weights <- NULL
}
on.exit(.Call(R_igraph_finalizer))
res <- .Call(
R_igraph_get_diameter,
graph,
as.logical(directed),
as.logical(unconnected),
weights
) +
1L
if (igraph_opt("return.vs.es")) {
res <- create_vs(graph, res)
}
res
}
#' @rdname diameter
#' @export
farthest_vertices <- function(
graph,
directed = TRUE,
unconnected = TRUE,
weights = NULL
) {
ensure_igraph(graph)
if (is.null(weights) && "weight" %in% edge_attr_names(graph)) {
weights <- E(graph)$weight
}
if (!is.null(weights) && any(!is.na(weights))) {
weights <- as.numeric(weights)
} else {
weights <- NULL
}
on.exit(.Call(R_igraph_finalizer))
res <- .Call(
R_igraph_farthest_points,
graph,
as.logical(directed),
as.logical(unconnected),
weights
)
res <- list(vertices = res[1:2] + 1L, distance = res[3])
if (igraph_opt("return.vs.es")) {
res$vertices <- create_vs(graph, res$vertices)
}
res
}
#' @export
#' @rdname distances
#' @cdocs igraph_average_path_length_dijkstra
mean_distance <- average_path_length_dijkstra_impl
#' Degree and degree distribution of the vertices
#'
#' The degree of a vertex is its most basic structural property, the number of
#' its adjacent edges.
#'
#'
#' @param graph The graph to analyze.
#' @param v The ids of vertices of which the degree will be calculated.
#' @param mode Character string, \dQuote{out} for out-degree, \dQuote{in} for
#' in-degree or \dQuote{total} for the sum of the two. For undirected graphs
#' this argument is ignored. \dQuote{all} is a synonym of \dQuote{total}.
#' @param loops Logical; whether the loop edges are also counted.
#' @param normalized Logical scalar, whether to normalize the degree. If
#' `TRUE` then the result is divided by \eqn{n-1}, where \eqn{n} is the
#' number of vertices in the graph.
#' @inheritParams rlang::args_dots_empty
#' @return For `degree()` a numeric vector of the same length as argument
#' `v`.
#'
#' For `degree_distribution()` a numeric vector of the same length as the
#' maximum degree plus one. The first element is the relative frequency zero
#' degree vertices, the second vertices with degree one, etc.
#'
#' For `max_degree()`, the largest degree in the graph. When no vertices are
#' selected, or when the input is the null graph, zero is returned as this
#' is the smallest possible degree.
#' @author Gabor Csardi \email{csardi.gabor@@gmail.com}
#' @keywords graphs
#' @family structural.properties
#' @export
#' @examples
#'
#' g <- make_ring(10)
#' degree(g)
#' g2 <- sample_gnp(1000, 10 / 1000)
#' max_degree(g2)
#' degree_distribution(g2)
#'
degree <- function(
graph,
v = V(graph),
mode = c("all", "out", "in", "total"),
loops = TRUE,
normalized = FALSE
) {
ensure_igraph(graph)
v <- as_igraph_vs(graph, v)
mode <- igraph.match.arg(mode)
res <- degree_impl(
graph,
vids = v,
mode = mode,
loops = loops
)
if (normalized) {
res <- res / (vcount(graph) - 1)
}
if (igraph_opt("add.vertex.names") && is_named(graph)) {
names(res) <- V(graph)$name[v]
}
res
}
#' @rdname degree
#' @export
#' @cdocs igraph_maxdegree
max_degree <- maxdegree_impl
#' @rdname degree
#' @param cumulative Logical; whether the cumulative degree distribution is to
#' be calculated.
#' @export
#' @importFrom graphics hist
degree_distribution <- function(graph, cumulative = FALSE, ...) {
ensure_igraph(graph)
cs <- degree(graph, ...)
hi <- hist(cs, -1:max(cs), plot = FALSE)$density
if (!cumulative) {
res <- hi
} else {
res <- rev(cumsum(rev(hi)))
}
res
}
#' Shortest (directed or undirected) paths between vertices
#'
#' `distances()` calculates the length of all the shortest paths from
#' or to the vertices in the network. `shortest_paths()` calculates one
#' shortest path (the path itself, and not just its length) from or to the
#' given vertex.
#'
#' The shortest path, or geodesic between two pair of vertices is a path with
#' the minimal number of vertices. The functions documented in this manual page
#' all calculate shortest paths between vertex pairs.
#'
#' `distances()` calculates the lengths of pairwise shortest paths from
#' a set of vertices (`from`) to another set of vertices (`to`). It
#' uses different algorithms, depending on the `algorithm` argument and
#' the `weight` edge attribute of the graph. The implemented algorithms
#' are breadth-first search (\sQuote{`unweighted`}), this only works for
#' unweighted graphs; the Dijkstra algorithm (\sQuote{`dijkstra`}), this
#' works for graphs with non-negative edge weights; the Bellman-Ford algorithm
#' (\sQuote{`bellman-ford`}); Johnson's algorithm
#' (\sQuote{`johnson`}); and a faster version of the Floyd-Warshall algorithm
#' with expected quadratic running time (\sQuote{`floyd-warshall`}). The latter
#' three algorithms work with arbitrary
#' edge weights, but (naturally) only for graphs that don't have a negative
#' cycle. Note that a negative-weight edge in an undirected graph implies
#' such a cycle. Johnson's algorithm performs better than the Bellman-Ford
#' one when many source (and target) vertices are given, with all-pairs
#' shortest path length calculations being the typical use case.
#'
#' igraph can choose automatically between algorithms, and chooses the most
#' efficient one that is appropriate for the supplied weights (if any). For
#' automatic algorithm selection, supply \sQuote{`automatic`} as the
#' `algorithm` argument. (This is also the default.)
#'
#' `shortest_paths()` calculates a single shortest path (i.e. the path
#' itself, not just its length) between the source vertex given in `from`,
#' to the target vertices given in `to`. `shortest_paths()` uses
#' breadth-first search for unweighted graphs and Dijkstra's algorithm for
#' weighted graphs. The latter only works if the edge weights are non-negative.
#'
#' `all_shortest_paths()` calculates *all* shortest paths between
#' pairs of vertices, including several shortest paths of the same length.
#' More precisely, it computerd all shortest path starting at `from`, and
#' ending at any vertex given in `to`. It uses a breadth-first search for
#' unweighted graphs and Dijkstra's algorithm for weighted ones. The latter
#' only supports non-negative edge weights. Caution: in multigraphs, the
#' result size is exponentially large in the number of vertex pairs with
#' multiple edges between them.
#'
#' `mean_distance()` calculates the average path length in a graph, by
#' calculating the shortest paths between all pairs of vertices (both ways for
#' directed graphs). It uses a breadth-first search for unweighted graphs and
#' Dijkstra's algorithm for weighted ones. The latter only supports non-negative
#' edge weights.
#'
#' `distance_table()` calculates a histogram, by calculating the shortest
#' path length between each pair of vertices. For directed graphs both
#' directions are considered, so every pair of vertices appears twice in the
#' histogram.
#'
#' @param graph The graph to work on.
#' @param v Numeric vector, the vertices from which the shortest paths will be
#' calculated.
#' @param to Numeric vector, the vertices to which the shortest paths will be
#' calculated. By default it includes all vertices. Note that for
#' `distances()` every vertex must be included here at most once. (This
#' is not required for `shortest_paths()`.
#' @param mode Character constant, gives whether the shortest paths to or from
#' the given vertices should be calculated for directed graphs. If `out`
#' then the shortest paths *from* the vertex, if `in` then *to*
#' it will be considered. If `all`, the default, then the graph is treated
#' as undirected, i.e. edge directions are not taken into account. This
#' argument is ignored for undirected graphs.
#' @param weights Possibly a numeric vector giving edge weights. If this is
#' `NULL` and the graph has a `weight` edge attribute, then the
#' attribute is used. If this is `NA` then no weights are used (even if
#' the graph has a `weight` attribute). In a weighted graph, the length
#' of a path is the sum of the weights of its constituent edges.
#' @param algorithm Which algorithm to use for the calculation. By default
#' igraph tries to select the fastest suitable algorithm. If there are no
#' weights, then an unweighted breadth-first search is used, otherwise if all
#' weights are positive, then Dijkstra's algorithm is used. If there are
#' negative weights and we do the calculation for more than 100 sources, then
#' Johnson's algorithm is used. Otherwise the Bellman-Ford algorithm is used.
#' You can override igraph's choice by explicitly giving this parameter. Note
#' that the igraph C core might still override your choice in obvious cases,
#' i.e. if there are no edge weights, then the unweighted algorithm will be
#' used, regardless of this argument.
#' @param details Whether to provide additional details in the result.
#' Functions accepting this argument (like `mean_distance()`) return
#' additional information like the number of disconnected vertex pairs in
#' the result when this parameter is set to `TRUE`.
#' @param unconnected What to do if the graph is unconnected (not
#' strongly connected if directed paths are considered). If TRUE, only
#' the lengths of the existing paths are considered and averaged; if
#' FALSE, the length of the missing paths are considered as having infinite
#' length, making the mean distance infinite as well.
#' @return For `distances()` a numeric matrix with `length(to)`
#' columns and `length(v)` rows. The shortest path length from a vertex to
#' itself is always zero. For unreachable vertices `Inf` is included.
#'
#' For `shortest_paths()` a named list with four entries is returned:
#' \item{vpath}{This itself is a list, of length `length(to)`; list
#' element `i` contains the vertex ids on the path from vertex `from`
#' to vertex `to[i]` (or the other way for directed graphs depending on
#' the `mode` argument). The vector also contains `from` and `i`
#' as the first and last elements. If `from` is the same as `i` then
#' it is only included once. If there is no path between two vertices then a
#' numeric vector of length zero is returned as the list element. If this
#' output is not requested in the `output` argument, then it will be
#' `NULL`.} \item{epath}{This is a list similar to `vpath`, but the
#' vectors of the list contain the edge ids along the shortest paths, instead
#' of the vertex ids. This entry is set to `NULL` if it is not requested
#' in the `output` argument.} \item{predecessors}{Numeric vector, the
#' predecessor of each vertex in the `to` argument, or `NULL` if it
#' was not requested.} \item{inbound_edges}{Numeric vector, the inbound edge
#' for each vertex, or `NULL`, if it was not requested.}
#'
#' For `all_shortest_paths()` a list is returned:
#' \describe{
#' \item{vpaths}{
#' This is a list.
#' Each list element contains the vertices of a shortest path from `from` to a vertex in `to`.
#' The shortest paths to the same vertex are collected into consecutive elements of the list.
#' }
#' \item{epaths}{
#' This is a list similar to vpaths, but the vectors of the list
#' contain the edge ids along the shortest paths, instead of the vertex ids.
#' }
#' \item{nrgeo}{
#' A vector in which each element is the number of shortest paths (geodesics)
#' from `from` to the corresponding vertex in `to`.
#' }
#' \item{res}{
#' Deprecated
#' }
#' }
#'
#' For `mean_distance()` a single number is returned if `details=FALSE`,
#' or a named list with two entries:
#' \describe{
#' \item{`res`}{
#' the mean distance as a numeric scalar
#' }
#' \item{`unconnected`}{
#' the number of unconnected vertex pairs, also as a numeric scalar.
#' }
#' }
#'
#' `distance_table()` returns a named list with two entries:
#' \describe{
#' \item{`res`}{
#' a numeric vector, the histogram of distances
#' }
#' \item{`unconnected`}{
#' a numeric scalar, the number of pairs for which the first vertex is not reachable from the second.
#' In undirected and directed graphs, unorderde and ordered pairs are considered, respectively.
#' Therefore the sum of the two entries is always \eqn{n(n-1)} for directed graphs
#' and \eqn{n(n-1)/2} for undirected graphs.
#' }
#' }
#' @author Gabor Csardi \email{csardi.gabor@@gmail.com}
#' @references West, D.B. (1996). *Introduction to Graph Theory.* Upper
#' Saddle River, N.J.: Prentice Hall.
#' @family structural.properties
#' @family paths
#' @export
#' @keywords graphs
#' @examples
#'
#' g <- make_ring(10)
#' distances(g)
#' shortest_paths(g, 5)
#' all_shortest_paths(g, 1, 6:8)
#' mean_distance(g)
#' ## Weighted shortest paths
#' el <- matrix(
#' ncol = 3, byrow = TRUE,
#' c(
#' 1, 2, 0,
#' 1, 3, 2,
#' 1, 4, 1,
#' 2, 3, 0,
#' 2, 5, 5,
#' 2, 6, 2,
#' 3, 2, 1,
#' 3, 4, 1,
#' 3, 7, 1,
#' 4, 3, 0,
#' 4, 7, 2,
#' 5, 6, 2,
#' 5, 8, 8,
#' 6, 3, 2,
#' 6, 7, 1,
#' 6, 9, 1,
#' 6, 10, 3,
#' 8, 6, 1,
#' 8, 9, 1,
#' 9, 10, 4
#' )
#' )
#' g2 <- add_edges(make_empty_graph(10), t(el[, 1:2]), weight = el[, 3])
#' distances(g2, mode = "out")
#'
distances <- function(
graph,
v = V(graph),
to = V(graph),
mode = c("all", "out", "in"),
weights = NULL,
algorithm = c(
"automatic",
"unweighted",
"dijkstra",
"bellman-ford",
"johnson",
"floyd-warshall"
)
) {
ensure_igraph(graph)
# make sure that the lower-level function in C gets mode == "out"
# unconditionally when the graph is undirected; this is used for
# the selection of Johnson's algorithm in automatic mode
if (!is_directed(graph)) {
mode <- "out"
}
v <- as_igraph_vs(graph, v)
to <- as_igraph_vs(graph, to)
mode <- igraph.match.arg(mode)
mode <- switch(mode, "out" = 1, "in" = 2, "all" = 3)
algorithm <- igraph.match.arg(algorithm)
algorithm <- switch(
algorithm,
"automatic" = 0,
"unweighted" = 1,
"dijkstra" = 2,
"bellman-ford" = 3,
"johnson" = 4,
"floyd-warshall" = 5
)
if (is.null(weights)) {
if ("weight" %in% edge_attr_names(graph)) {
weights <- as.numeric(E(graph)$weight)
}
} else {
if (length(weights) == 1 && is.na(weights)) {
weights <- NULL
} else {
weights <- as.numeric(weights)
}
}
if (!is.null(weights) && algorithm == 1) {
weights <- NULL
cli::cli_warn("Unweighted algorithm chosen, {.arg weights} ignored.")
}
on.exit(.Call(R_igraph_finalizer))
res <- .Call(
R_igraph_shortest_paths,
graph,
v - 1,
to - 1,
as.numeric(mode),
weights,
as.numeric(algorithm)
)
if (igraph_opt("add.vertex.names") && is_named(graph)) {
rownames(res) <- V(graph)$name[v]
colnames(res) <- V(graph)$name[to]
}
res
}
#' @rdname distances
#' @param from Numeric constant, the vertex from or to the shortest paths will
#' be calculated. Note that right now this is not a vector of vertex ids, but
#' only a single vertex.
#' @param output Character scalar, defines how to report the shortest paths.
#' \dQuote{vpath} means that the vertices along the paths are reported, this
#' form was used prior to igraph version 0.6. \dQuote{epath} means that the
#' edges along the paths are reported. \dQuote{both} means that both forms are
#' returned, in a named list with components \dQuote{vpath} and \dQuote{epath}.
#' @param predecessors Logical scalar, whether to return the predecessor vertex
#' for each vertex. The predecessor of vertex `i` in the tree is the
#' vertex from which vertex `i` was reached. The predecessor of the start
#' vertex (in the `from` argument) is itself by definition. If the
#' predecessor is zero, it means that the given vertex was not reached from the
#' source during the search. Note that the search terminates if all the
#' vertices in `to` are reached.
#' @param inbound.edges Logical scalar, whether to return the inbound edge for
#' each vertex. The inbound edge of vertex `i` in the tree is the edge via
#' which vertex `i` was reached. The start vertex and vertices that were
#' not reached during the search will have zero in the corresponding entry of
#' the vector. Note that the search terminates if all the vertices in `to`
#' are reached.
#' @export
shortest_paths <- function(
graph,
from,
to = V(graph),
mode = c("out", "all", "in"),
weights = NULL,
output = c("vpath", "epath", "both"),
predecessors = FALSE,
inbound.edges = FALSE,
algorithm = c("automatic", "unweighted", "dijkstra", "bellman-ford")
) {
ensure_igraph(graph)
mode <- igraph.match.arg(mode)
mode <- switch(mode, "out" = 1, "in" = 2, "all" = 3)
output <- igraph.match.arg(output)
output <- switch(output, "vpath" = 0, "epath" = 1, "both" = 2)
algorithm <- igraph.match.arg(algorithm)
algorithm <- switch(
algorithm,
"automatic" = 0,
"unweighted" = 1,
"dijkstra" = 2,
"bellman-ford" = 3
)
if (is.null(weights)) {
if ("weight" %in% edge_attr_names(graph)) {
weights <- as.numeric(E(graph)$weight)
}
} else {
if (length(weights) == 1 && is.na(weights)) {
weights <- NULL
} else {
weights <- as.numeric(weights)
}
}
if (!is.null(weights) && algorithm == 1) {
weights <- NULL
cli::cli_warn("Unweighted algorithm chosen, {.arg weights} ignored.")
}
to <- as_igraph_vs(graph, to) - 1
on.exit(.Call(R_igraph_finalizer))
res <- .Call(
R_igraph_get_shortest_paths,
graph,
as_igraph_vs(graph, from) - 1,
to,
as.numeric(mode),
as.numeric(length(to)),
weights,
as.numeric(output),
as.logical(predecessors),
as.logical(inbound.edges),
as.numeric(algorithm)
)
if (!is.null(res$vpath)) {
res$vpath <- lapply(res$vpath, function(x) x + 1)
}
if (!is.null(res$epath)) {
res$epath <- lapply(res$epath, function(x) x + 1)
}
if (!is.null(res$predecessors)) {
res$predecessors <- res$predecessors + 1
}
if (!is.null(res$inbound_edges)) {
res$inbound_edges <- res$inbound_edges + 1
}
if (igraph_opt("return.vs.es")) {
if (!is.null(res$vpath)) {
res$vpath <- lapply(
res$vpath,
unsafe_create_vs,
graph = graph,
verts = V(graph)
)
}
if (!is.null(res$epath)) {
res$epath <- lapply(
res$epath,
unsafe_create_es,
graph = graph,
es = E(graph)
)
}
if (!is.null(res$predecessors)) {
res$predecessors <- create_vs(
res$predecessors,
graph = graph,
na_ok = TRUE
)
}
if (!is.null(res$inbound_edges)) {
res$inbound_edges <- create_es(
res$inbound_edges,
graph = graph,
na_ok = TRUE
)
}
}
res
}
#' @export
#' @rdname distances
all_shortest_paths <- function(
graph,
from,
to = V(graph),
mode = c("out", "all", "in"),
weights = NULL
) {
ensure_igraph(graph)
mode <- igraph.match.arg(mode)
if (is.null(weights)) {
if ("weight" %in% edge_attr_names(graph)) {
weights <- as.numeric(E(graph)$weight)
}
}
if (is.null(weights)) {
res <- get_all_shortest_paths_impl(
graph,
from = from,
to = to,
mode = mode
)
} else {
res <- get_all_shortest_paths_dijkstra_impl(
graph,
from = from,
to = to,
weights = weights,
mode = mode
)
}
if (igraph_opt("return.vs.es")) {
res$vpaths <- lapply(
res$vpaths,
unsafe_create_vs,
graph = graph,
verts = V(graph)
)
}
# Transitional, eventually, remove $res
res$res <- res$vpaths
res
}
#' Find the \eqn{k} shortest paths between two vertices
#'
#' Finds the \eqn{k} shortest paths between the given source and target
#' vertex in order of increasing length. Currently this function uses
#' Yen's algorithm.
#'
#' @param graph The input graph.
#' @param from The source vertex of the shortest paths.
#' @param to The target vertex of the shortest paths.
#' @param k The number of paths to find. They will be returned in order of
#' increasing length.
#' @inheritParams rlang::args_dots_empty
#' @inheritParams shortest_paths
#' @return A named list with two components is returned:
#' \describe{
#' \item{vpaths}{
#' The list of \eqn{k} shortest paths in terms of vertices
#' }
#' \item{epaths}{
#' The list of \eqn{k} shortest paths in terms of edges
#' }
#' }
#' @references Yen, Jin Y.:
#' An algorithm for finding shortest routes from all source nodes to a given
#' destination in general networks.
#' Quarterly of Applied Mathematics. 27 (4): 526–530. (1970)
#' \doi{10.1090/qam/253822}
#' @export
#' @family structural.properties
#' @seealso [shortest_paths()], [all_shortest_paths()]
#' @keywords graphs
#' @cdocs igraph_get_k_shortest_paths
k_shortest_paths <- get_k_shortest_paths_impl
#' In- or out- component of a vertex
#'
#' Finds all vertices reachable from a given vertex, or the opposite: all
#' vertices from which a given vertex is reachable via a directed path.
#'
#' A breadth-first search is conducted starting from vertex `v`.
#'
#' @param graph The graph to analyze.
#' @param v The vertex to start the search from.
#' @param mode Character string, either \dQuote{in}, \dQuote{out} or
#' \dQuote{all}. If \dQuote{in} all vertices from which `v` is reachable
#' are listed. If \dQuote{out} all vertices reachable from `v` are
#' returned. If \dQuote{all} returns the union of these. It is ignored for
#' undirected graphs.
#' @return Numeric vector, the ids of the vertices in the same component as
#' `v`.
#' @author Gabor Csardi \email{csardi.gabor@@gmail.com}
#' @seealso [components()]
#' @family structural.properties
#' @export
#' @keywords graphs
#' @examples
#'
#' g <- sample_gnp(100, 1 / 200)
#' subcomponent(g, 1, "in")
#' subcomponent(g, 1, "out")
#' subcomponent(g, 1, "all")
subcomponent <- function(graph, v, mode = c("all", "out", "in")) {
ensure_igraph(graph)
mode <- igraph.match.arg(mode)
mode <- switch(mode, "out" = 1, "in" = 2, "all" = 3)
on.exit(.Call(R_igraph_finalizer))
res <- .Call(
R_igraph_subcomponent,
graph,
as_igraph_vs(graph, v) - 1,
as.numeric(mode)
) +
1L
if (igraph_opt("return.vs.es")) {
res <- create_vs(graph, res)
}
res
}
#' Subgraph of a graph
#'
#' `subgraph()` creates a subgraph of a graph, containing only the specified
#' vertices and all the edges among them.
#'
#' `induced_subgraph()` calculates the induced subgraph of a set of vertices
#' in a graph. This means that exactly the specified vertices and all the edges
#' between them will be kept in the result graph.
#'
#' `subgraph_from_edges()` calculates the subgraph of a graph. For this function
#' one can specify the vertices and edges to keep. This function will be
#' renamed to `subgraph()` in the next major version of igraph.
#'
#' The `subgraph()` function currently does the same as `induced_subgraph()`
#' (assuming \sQuote{`auto`} as the `impl` argument), but this behaviour
#' is deprecated. In the next major version, `subgraph()` will overtake the
#' functionality of `subgraph_from_edges()`.
#'
#' @aliases subgraph_from_edges
#' @param graph The original graph.
#' @return A new graph object.
#' @author Gabor Csardi \email{csardi.gabor@@gmail.com}
#' @family structural.properties
#' @export
#' @keywords graphs
#' @examples
#'
#' g <- make_ring(10)
#' g2 <- induced_subgraph(g, 1:7)
#' g3 <- subgraph_from_edges(g, 1:5)
#'
subgraph <- function(graph, vids) {
induced_subgraph(graph, vids)
}
#' @rdname subgraph
#' @param vids Numeric vector, the vertices of the original graph which will
#' form the subgraph.
#' @param impl Character scalar, to choose between two implementation of the
#' subgraph calculation. \sQuote{`copy_and_delete`} copies the graph
#' first, and then deletes the vertices and edges that are not included in the
#' result graph. \sQuote{`create_from_scratch`} searches for all vertices
#' and edges that must be kept and then uses them to create the graph from
#' scratch. \sQuote{`auto`} chooses between the two implementations
#' automatically, using heuristics based on the size of the original and the
#' result graph.
#' @export
induced_subgraph <- function(
graph,
vids,
impl = c("auto", "copy_and_delete", "create_from_scratch")
) {
# Argument checks
ensure_igraph(graph)
vids <- as_igraph_vs(graph, vids)
impl <- switch(
igraph.match.arg(impl),
"auto" = 0L,
"copy_and_delete" = 1L,
"create_from_scratch" = 2L
)
on.exit(.Call(R_igraph_finalizer))
# Function call
res <- .Call(R_igraph_induced_subgraph, graph, vids - 1, impl)
res
}
#' @rdname subgraph
#' @param eids The edge ids of the edges that will be kept in the result graph.
#' @param delete.vertices Logical scalar, whether to remove vertices that do
#' not have any adjacent edges in `eids`.
#' @export
subgraph_from_edges <- function(graph, eids, delete.vertices = TRUE) {
# Argument checks
ensure_igraph(graph)
eids <- as_igraph_es(graph, eids)
delete.vertices <- as.logical(delete.vertices)
on.exit(.Call(R_igraph_finalizer))
# Function call
res <- .Call(R_igraph_subgraph_from_edges, graph, eids - 1, delete.vertices)
res
}
#' Subgraph of a graph
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#'
#' `subgraph.edges()` was renamed to [subgraph_from_edges()] to create a more
#' consistent API.
#' @inheritParams subgraph_from_edges
#' @keywords internal
#' @export
subgraph.edges <- function(graph, eids, delete.vertices = TRUE) {
# nocov start
lifecycle::deprecate_soft(
"2.1.0",
"subgraph.edges()",
"subgraph_from_edges()"
)
subgraph_from_edges(
graph = graph,
eids = eids,
delete.vertices = delete.vertices
)
} # nocov end
#' Transitivity of a graph
#'
#' Transitivity measures the probability that the adjacent vertices of a vertex
#' are connected. This is sometimes also called the clustering coefficient.
#'
#' Note that there are essentially two classes of transitivity measures, one is
#' a vertex-level, the other a graph level property.
#'
#' There are several generalizations of transitivity to weighted graphs, here
#' we use the definition by A. Barrat, this is a local vertex-level quantity,
#' its formula is
#'
#' \deqn{C_i^w=\frac{1}{s_i(k_i-1)}\sum_{j,h}\frac{w_{ij}+w_{ih}}{2}a_{ij}a_{ih}a_{jh}}{
#' weighted C_i = 1/s_i 1/(k_i-1) sum( (w_ij+w_ih)/2 a_ij a_ih a_jh, j, h)}
#'
#' \eqn{s_i}{s_i} is the strength of vertex \eqn{i}{i}, see
#' [strength()], \eqn{a_{ij}}{a_ij} are elements of the
#' adjacency matrix, \eqn{k_i}{k_i} is the vertex degree, \eqn{w_{ij}}{w_ij}
#' are the weights.
#'
#' This formula gives back the normal not-weighted local transitivity if all
#' the edge weights are the same.
#'
#' The `barrat` type of transitivity does not work for graphs with
#' multiple and/or loop edges. If you want to calculate it for a directed
#' graph, call [as_undirected()] with the `collapse` mode first.
#'
#' @param graph The graph to analyze.
#' @param type The type of the transitivity to calculate. Possible values:
#' \describe{
#' \item{"global"}{
#' The global transitivity of an undirected graph.
#' This is simply the ratio of the count of triangles and connected triples in the graph.
#' In directed graphs, edge directions are ignored.
#' }
#' \item{"local"}{
#' The local transitivity of an undirected graph.
#' It is calculated for each vertex given in the `vids` argument.
#' The local transitivity of a vertex is the ratio of the count of triangles connected to the vertex
#' and the triples centered on the vertex.
#' In directed graphs, edge directions are ignored.
#' }
#' \item{"undirected"}{
#' This is the same as `global`.
#' }
#' \item{"globalundirected"}{
#' This is the same as `global`.
#' }
#' \item{"localundirected"}{
#' This is the same as `local`.
#' }
#' \item{"barrat"}{
#' The weighted transitivity as defined by A. Barrat. See details below.
#' }
#' \item{"weighted"}{
#' The same as `barrat`.
#' }
#' }
#' @param vids The vertex ids for the local transitivity will be calculated.
#' This will be ignored for global transitivity types. The default value is
#' `NULL`, in this case all vertices are considered. It is slightly faster
#' to supply `NULL` here than `V(graph)`.
#' @param weights Optional weights for weighted transitivity. It is ignored for
#' other transitivity measures. If it is `NULL` (the default) and the
#' graph has a `weight` edge attribute, then it is used automatically.
#' @param isolates Character scalar, for local versions of transitivity, it
#' defines how to treat vertices with degree zero and one.
#' If it is \sQuote{`NaN`} then their local transitivity is
#' reported as `NaN` and they are not included in the averaging, for the
#' transitivity types that calculate an average. If there are no vertices with
#' degree two or higher, then the averaging will still result `NaN`. If it
#' is \sQuote{`zero`}, then we report 0 transitivity for them, and they
#' are included in the averaging, if an average is calculated.
#' For the global transitivity, it controls how to handle graphs with
#' no connected triplets: `NaN` or zero will be returned according to
#' the respective setting.
#' @return For \sQuote{`global`} a single number, or `NaN` if there
#' are no connected triples in the graph.
#'
#' For \sQuote{`local`} a vector of transitivity scores, one for each
#' vertex in \sQuote{`vids`}.
#' @author Gabor Csardi \email{csardi.gabor@@gmail.com}
#' @references Wasserman, S., and Faust, K. (1994). *Social Network
#' Analysis: Methods and Applications.* Cambridge: Cambridge University Press.
#'
#' Alain Barrat, Marc Barthelemy, Romualdo Pastor-Satorras, Alessandro
#' Vespignani: The architecture of complex weighted networks, Proc. Natl. Acad.
#' Sci. USA 101, 3747 (2004)
#' @family structural.properties
#' @export
#' @keywords graphs
#' @examples
#'
#' g <- make_ring(10)
#' transitivity(g)
#' g2 <- sample_gnp(1000, 10 / 1000)
#' transitivity(g2) # this is about 10/1000
#'
#' # Weighted version, the figure from the Barrat paper
#' gw <- graph_from_literal(A - B:C:D:E, B - C:D, C - D)
#' E(gw)$weight <- 1
#' E(gw)[V(gw)[name == "A"] %--% V(gw)[name == "E"]]$weight <- 5
#' transitivity(gw, vids = "A", type = "local")
#' transitivity(gw, vids = "A", type = "weighted")
#'
#' # Weighted reduces to "local" if weights are the same
#' gw2 <- sample_gnp(1000, 10 / 1000)
#' E(gw2)$weight <- 1
#' t1 <- transitivity(gw2, type = "local")
#' t2 <- transitivity(gw2, type = "weighted")
#' all(is.na(t1) == is.na(t2))
#' all(na.omit(t1 == t2))
#'
transitivity <- function(
graph,
type = c(
"undirected",
"global",
"globalundirected",
"localundirected",
"local",
"average",
"localaverage",
"localaverageundirected",
"barrat",
"weighted"
),
vids = NULL,
weights = NULL,
isolates = c("NaN", "zero")
) {
ensure_igraph(graph)
type <- igraph.match.arg(type)
type <- switch(
type,
"undirected" = 0L,
"global" = 0L,
"globalundirected" = 0L,
"localundirected" = 1L,
"local" = 1L,
"average" = 2L,
"localaverage" = 2L,
"localaverageundirected" = 2L,
"barrat" = 3L,
"weighted" = 3L
)
if (is.null(weights) && "weight" %in% edge_attr_names(graph)) {
weights <- E(graph)$weight
}
if (!is.null(weights) && any(!is.na(weights))) {
weights <- as.numeric(weights)
} else {
weights <- NULL
}
isolates <- igraph.match.arg(isolates)
isolates <- as.double(switch(isolates, "nan" = 0, "zero" = 1))
on.exit(.Call(R_igraph_finalizer))
if (type == 0) {
.Call(R_igraph_transitivity_undirected, graph, isolates)
} else if (type == 1) {
if (is.null(vids)) {
res <- .Call(R_igraph_transitivity_local_undirected_all, graph, isolates)
if (igraph_opt("add.vertex.names") && is_named(graph)) {
names(res) <- V(graph)$name
}
res
} else {
vids <- as_igraph_vs(graph, vids)
res <- .Call(
R_igraph_transitivity_local_undirected,
graph,
vids - 1,
isolates
)
if (igraph_opt("add.vertex.names") && is_named(graph)) {
names(res) <- V(graph)$name[vids]
}
res
}
} else if (type == 2) {
.Call(R_igraph_transitivity_avglocal_undirected, graph, isolates)
} else if (type == 3) {
if (is.null(vids)) {
vids <- V(graph)
}
vids <- as_igraph_vs(graph, vids)
res <- if (is.null(weights)) {
.Call(
R_igraph_transitivity_local_undirected,
graph,
vids - 1,
isolates
)
} else {
.Call(
R_igraph_transitivity_barrat,
graph,
vids - 1,
weights,
isolates
)
}
if (igraph_opt("add.vertex.names") && is_named(graph)) {
names(res) <- V(graph)$name[vids]
}
res
}
}
#' Burt's constraint
#'
#' Given a graph, `constraint()` calculates Burt's constraint for each
#' vertex.
#'
#' Burt's constraint is higher if ego has less, or mutually
#' stronger related (i.e. more redundant) contacts. Burt's measure of
#' constraint, \eqn{C_i}{C[i]}, of vertex \eqn{i}'s ego network
#' \eqn{V_i}{V[i]}, is defined for directed and valued graphs,
#' \deqn{C_i=\sum_{j \in V_i \setminus \{i\}} (p_{ij}+\sum_{q \in V_i
#' \setminus \{i,j\}} p_{iq} p_{qj})^2}{
#' C[i] = sum( [sum( p[i,j] + p[i,q] p[q,j], q in V[i], q != i,j )]^2, j in
#' V[i], j != i).
#' }
#' for a graph of order (i.e. number of vertices) \eqn{N}, where
#' proportional tie strengths are defined as
#' \deqn{p_{ij} = \frac{a_{ij}+a_{ji}}{\sum_{k \in V_i \setminus \{i\}}(a_{ik}+a_{ki})},}{
#' p[i,j]=(a[i,j]+a[j,i]) / sum(a[i,k]+a[k,i], k in V[i], k != i),
#' }
#' \eqn{a_{ij}}{a[i,j]} are elements of \eqn{A} and the latter being the
#' graph adjacency matrix. For isolated vertices, constraint is undefined.
#'
#' @param graph A graph object, the input graph.
#' @param nodes The vertices for which the constraint will be calculated.
#' Defaults to all vertices.
#' @param weights The weights of the edges. If this is `NULL` and there is
#' a `weight` edge attribute this is used. If there is no such edge
#' attribute all edges will have the same weight.
#' @return A numeric vector of constraint scores
#' @author Jeroen Bruggeman
#' (<https://sites.google.com/site/jebrug/jeroen-bruggeman-social-science>)
#' and Gabor Csardi \email{csardi.gabor@@gmail.com}
#' @references Burt, R.S. (2004). Structural holes and good ideas.
#' *American Journal of Sociology* 110, 349-399.
#' @family structural.properties
#' @export
#' @keywords graphs
#' @examples
#'
#' g <- sample_gnp(20, 5 / 20)
#' constraint(g)
#'
constraint <- function(graph, nodes = V(graph), weights = NULL) {
ensure_igraph(graph)
nodes <- as_igraph_vs(graph, nodes)
if (is.null(weights)) {
if ("weight" %in% edge_attr_names(graph)) {
weights <- E(graph)$weight
}
}
on.exit(.Call(R_igraph_finalizer))
res <- .Call(R_igraph_constraint, graph, nodes - 1, as.numeric(weights))
if (igraph_opt("add.vertex.names") && is_named(graph)) {
names(res) <- V(graph)$name[nodes]
}
res
}
#' Reciprocity of graphs
#'
#' Calculates the reciprocity of a directed graph.
#'
#' The measure of reciprocity defines the proportion of mutual connections, in
#' a directed graph. It is most commonly defined as the probability that the
#' opposite counterpart of a directed edge is also included in the graph. Or in
#' adjacency matrix notation:
#' \eqn{1 - \left(\sum_{i,j} |A_{ij} - A_{ji}|\right) / \left(2\sum_{i,j} A_{ij}\right)}{1 - (sum_ij |A_ij - A_ji|) / (2 sum_ij A_ij)}.
#' This measure is calculated if the `mode` argument is `default`.
#'
#' Prior to igraph version 0.6, another measure was implemented, defined as the
#' probability of mutual connection between a vertex pair, if we know that
#' there is a (possibly non-mutual) connection between them. In other words,
#' (unordered) vertex pairs are classified into three groups: (1)
#' not-connected, (2) non-reciprocally connected, (3) reciprocally connected.
#' The result is the size of group (3), divided by the sum of group sizes
#' (2)+(3). This measure is calculated if `mode` is `ratio`.
#'
#' @param graph The graph object.
#' @param ignore.loops Logical constant, whether to ignore loop edges.
#' @param mode See below.
#' @return A numeric scalar between zero and one.
#' @author Tamas Nepusz \email{ntamas@@gmail.com} and Gabor Csardi
#' \email{csardi.gabor@@gmail.com}
#' @family structural.properties
#' @export
#' @keywords graphs
#' @examples
#'
#' g <- sample_gnp(20, 5 / 20, directed = TRUE)
#' reciprocity(g)
#'
#' @cdocs igraph_reciprocity
reciprocity <- reciprocity_impl
#' Graph density
#'
#' The density of a graph is the ratio of the actual number of edges and the
#' largest possible number of edges in the graph, assuming that no multi-edges
#' are present.
#'
#' The concept of density is ill-defined for multigraphs. Note that this function
#' does not check whether the graph has multi-edges and will return meaningless
#' results for such graphs.
#'
#' @param graph The input graph.
#' @param loops Logical constant, whether loop edges may exist in the graph.
#' This affects the calculation of the largest possible number of edges in the
#' graph. If this parameter is set to FALSE yet the graph contains self-loops,
#' the result will not be meaningful.
#' @return A real constant. This function returns `NaN` (=0.0/0.0) for an
#' empty graph with zero vertices.
#' @author Gabor Csardi \email{csardi.gabor@@gmail.com}
#' @seealso [vcount()], [ecount()], [simplify()]
#' to get rid of the multiple and/or loop edges.
#' @references Wasserman, S., and Faust, K. (1994). Social Network Analysis:
#' Methods and Applications. Cambridge: Cambridge University Press.
#' @family structural.properties
#' @export
#' @keywords graphs
#' @examples
#'
#' edge_density(make_empty_graph(n = 10)) # empty graphs have density 0
#' edge_density(make_full_graph(n = 10)) # complete graphs have density 1
#' edge_density(sample_gnp(n = 100, p = 0.4)) # density will be close to p
#'
#' # loop edges
#' g <- make_graph(c(1, 2, 2, 2, 2, 3)) # graph with a self-loop
#' edge_density(g, loops = FALSE) # this is wrong!!!
#' edge_density(g, loops = TRUE) # this is right!!!
#' edge_density(simplify(g), loops = FALSE) # this is also right, but different
#'
#' @cdocs igraph_density
edge_density <- density_impl
#' @rdname ego
#' @export
ego_size <- function(
graph,
order = 1,
nodes = V(graph),
mode = c("all", "out", "in"),
mindist = 0
) {
ensure_igraph(graph)
mode <- igraph.match.arg(mode)
mode <- switch(mode, "out" = 1, "in" = 2, "all" = 3)
mindist <- as.numeric(mindist)
on.exit(.Call(R_igraph_finalizer))
.Call(
R_igraph_neighborhood_size,
graph,
as_igraph_vs(graph, nodes) - 1,
as.numeric(order),
as.numeric(mode),
mindist
)
}
#' @export
#' @rdname ego
neighborhood_size <- ego_size
#' Neighborhood of graph vertices
#'
#' These functions find the vertices not farther than a given limit from
#' another fixed vertex, these are called the neighborhood of the vertex.
#' Note that `ego()` and `neighborhood()`,
#' `ego_size()` and `neighborhood_size()`,
#' `make_ego_graph()` and `make_neighborhood()_graph()`,
#' are synonyms (aliases).
#'
#' The neighborhood of a given order `r` of a vertex `v` includes all
#' vertices which are closer to `v` than the order. I.e. order 0 is always
#' `v` itself, order 1 is `v` plus its immediate neighbors, order 2
#' is order 1 plus the immediate neighbors of the vertices in order 1, etc.
#'
#' `ego_size()`/`neighborhood_size()` (synonyms) returns the size of the neighborhoods of the given order,
#' for each given vertex.
#'
#' `ego()`/`neighborhood()` (synonyms) returns the vertices belonging to the neighborhoods of the given
#' order, for each given vertex.
#'
#' `make_ego_graph()`/`make_neighborhood()_graph()` (synonyms) is creates (sub)graphs from all neighborhoods of
#' the given vertices with the given order parameter. This function preserves
#' the vertex, edge and graph attributes.
#'
#' `connect()` creates a new graph by connecting each vertex to
#' all other vertices in its neighborhood.
#'
#' @aliases neighborhood ego_graph
#' @aliases connect ego_size ego
#' @param graph The input graph.
#' @param order Integer giving the order of the neighborhood. Negative values
#' indicate an infinite order.
#' @param nodes The vertices for which the calculation is performed.
#' @param mode Character constant, it specifies how to use the direction of
#' the edges if a directed graph is analyzed. For \sQuote{out} only the
#' outgoing edges are followed, so all vertices reachable from the source
#' vertex in at most `order` steps are counted. For \sQuote{"in"} all
#' vertices from which the source vertex is reachable in at most `order`
#' steps are counted. \sQuote{"all"} ignores the direction of the edges. This
#' argument is ignored for undirected graphs.
#' @param mindist The minimum distance to include the vertex in the result.
#' @return
#' \itemize{
#' \item{`ego_size()`/`neighborhood_size()` returns with an integer vector.}
#' \item{`ego()`/`neighborhood()` (synonyms) returns A list of `igraph.vs` or a list of numeric
#' vectors depending on the value of `igraph_opt("return.vs.es")`,
#' see details for performance characteristics.}
#' \item{`make_ego_graph()`/`make_neighborhood_graph()` returns with a list of graphs.}
#' \item{`connect()` returns with a new graph object.}
#' }
#' @author Gabor Csardi \email{csardi.gabor@@gmail.com}, the first version was
#' done by Vincent Matossian
#' @family structural.properties
#' @export
#' @keywords graphs
#' @examples
#'
#' g <- make_ring(10)
#'
#' ego_size(g, order = 0, 1:3)
#' ego_size(g, order = 1, 1:3)
#' ego_size(g, order = 2, 1:3)
#'
#' # neighborhood_size() is an alias of ego_size()
#' neighborhood_size(g, order = 0, 1:3)
#' neighborhood_size(g, order = 1, 1:3)
#' neighborhood_size(g, order = 2, 1:3)
#'
#' ego(g, order = 0, 1:3)
#' ego(g, order = 1, 1:3)
#' ego(g, order = 2, 1:3)
#'
#' # neighborhood() is an alias of ego()
#' neighborhood(g, order = 0, 1:3)
#' neighborhood(g, order = 1, 1:3)
#' neighborhood(g, order = 2, 1:3)
#'
#' # attributes are preserved
#' V(g)$name <- c("a", "b", "c", "d", "e", "f", "g", "h", "i", "j")
#' make_ego_graph(g, order = 2, 1:3)
#' # make_neighborhood_graph() is an alias of make_ego_graph()
#' make_neighborhood_graph(g, order = 2, 1:3)
#'
#' # connecting to the neighborhood
#' g <- make_ring(10)
#' g <- connect(g, 2)
#'
ego <- function(
graph,
order = 1,
nodes = V(graph),
mode = c("all", "out", "in"),
mindist = 0
) {
ensure_igraph(graph)
mode <- igraph.match.arg(mode)
mode <- switch(mode, "out" = 1, "in" = 2, "all" = 3)
mindist <- as.numeric(mindist)
on.exit(.Call(R_igraph_finalizer))
res <- .Call(
R_igraph_neighborhood,
graph,
as_igraph_vs(graph, nodes) - 1,
as.numeric(order),
as.numeric(mode),
mindist
)
res <- lapply(res, function(x) x + 1)
if (igraph_opt("return.vs.es")) {
res <- lapply(res, unsafe_create_vs, graph = graph, verts = V(graph))
}
res
}
#' @export
#' @rdname ego
neighborhood <- ego
#' @rdname ego
#' @export
make_ego_graph <- function(
graph,
order = 1,
nodes = V(graph),
mode = c("all", "out", "in"),
mindist = 0
) {
ensure_igraph(graph)
mode <- igraph.match.arg(mode)
mode <- switch(mode, "out" = 1L, "in" = 2L, "all" = 3L)
mindist <- as.numeric(mindist)
on.exit(.Call(R_igraph_finalizer))
res <- .Call(
R_igraph_neighborhood_graphs,
graph,
as_igraph_vs(graph, nodes) - 1,
as.numeric(order),
as.integer(mode),
mindist
)
res
}
#' @export
#' @rdname ego
make_neighborhood_graph <- make_ego_graph
#' K-core decomposition of graphs
#'
#' The k-core of graph is a maximal subgraph in which each vertex has at least
#' degree k. The coreness of a vertex is k if it belongs to the k-core but not
#' to the (k+1)-core.
#'
#' The k-core of a graph is the maximal subgraph in which every vertex has at
#' least degree k. The cores of a graph form layers: the (k+1)-core is always a
#' subgraph of the k-core.
#'
#' This function calculates the coreness for each vertex.
#'
#' @param graph The input graph, it can be directed or undirected
#' @param mode The type of the core in directed graphs. Character constant,
#' possible values: `in`: in-cores are computed, `out`: out-cores are
#' computed, `all`: the corresponding undirected graph is considered. This
#' argument is ignored for undirected graphs.
#' @return Numeric vector of integer numbers giving the coreness of each
#' vertex.
#' @author Gabor Csardi \email{csardi.gabor@@gmail.com}
#' @seealso [degree()]
#' @references Vladimir Batagelj, Matjaz Zaversnik: An O(m) Algorithm for Cores
#' Decomposition of Networks, 2002
#'
#' Seidman S. B. (1983) Network structure and minimum degree, *Social
#' Networks*, 5, 269--287.
#' @family structural.properties
#' @export
#' @keywords graphs
#' @examples
#'
#' g <- make_ring(10)
#' g <- add_edges(g, c(1, 2, 2, 3, 1, 3))
#' coreness(g) # small core triangle in a ring
#'
coreness <- function(graph, mode = c("all", "out", "in")) {
ensure_igraph(graph)
mode <- igraph.match.arg(mode)
mode <- switch(mode, "out" = 1, "in" = 2, "all" = 3)
on.exit(.Call(R_igraph_finalizer))
res <- .Call(R_igraph_coreness, graph, as.numeric(mode))
if (igraph_opt("add.vertex.names") && is_named(graph)) {
names(res) <- vertex_attr(graph, "name")
}
res
}
#' Topological sorting of vertices in a graph
#'
#' A topological sorting of a directed acyclic graph is a linear ordering of
#' its nodes where each node comes before all nodes to which it has edges.
#'
#' Every DAG has at least one topological sort, and may have many. This
#' function returns a possible topological sort among them. If the graph is not
#' acyclic (it has at least one cycle), a partial topological sort is returned
#' and a warning is issued.
#'
#' @param graph The input graph, should be directed
#' @param mode Specifies how to use the direction of the edges. For
#' \dQuote{`out`}, the sorting order ensures that each node comes before
#' all nodes to which it has edges, so nodes with no incoming edges go first.
#' For \dQuote{`in`}, it is quite the opposite: each node comes before all
#' nodes from which it receives edges. Nodes with no outgoing edges go first.
#' @return A vertex sequence (by default, but see the `return.vs.es`
#' option of [igraph_options()]) containing vertices in
#' topologically sorted order.
#' @author Tamas Nepusz \email{ntamas@@gmail.com} and Gabor Csardi
#' \email{csardi.gabor@@gmail.com} for the R interface
#' @keywords graphs
#' @family structural.properties
#' @export
#' @examples
#'
#' g <- sample_pa(100)
#' topo_sort(g)
#'
topo_sort <- function(graph, mode = c("out", "all", "in")) {
ensure_igraph(graph)
mode <- igraph.match.arg(mode)
mode <- switch(mode, "out" = 1, "in" = 2, "all" = 3)
on.exit(.Call(R_igraph_finalizer))
res <- .Call(R_igraph_topological_sorting, graph, as.numeric(mode)) + 1L
if (igraph_opt("return.vs.es")) {
res <- create_vs(graph, res)
}
res
}
#' Finding a feedback arc set in a graph
#'
#' A feedback arc set of a graph is a subset of edges whose removal breaks all
#' cycles in the graph.
#'
#' Feedback arc sets are typically used in directed graphs. The removal of a
#' feedback arc set of a directed graph ensures that the remaining graph is a
#' directed acyclic graph (DAG). For undirected graphs, the removal of a feedback
#' arc set ensures that the remaining graph is a forest (i.e. every connected
#' component is a tree).
#'
#' @param graph The input graph
#' @param weights Potential edge weights. If the graph has an edge
#' attribute called \sQuote{`weight`}, and this argument is
#' `NULL`, then the edge attribute is used automatically. The goal of
#' the feedback arc set problem is to find a feedback arc set with the smallest
#' total weight.
#' @param algo Specifies the algorithm to use. \dQuote{`exact_ip`} solves
#' the feedback arc set problem with an exact integer programming algorithm that
#' guarantees that the total weight of the removed edges is as small as possible.
#' \dQuote{`approx_eades`} uses a fast (linear-time) approximation
#' algorithm from Eades, Lin and Smyth. \dQuote{`exact`} is an alias to
#' \dQuote{`exact_ip`} while \dQuote{`approx`} is an alias to
#' \dQuote{`approx_eades`}.
#' @return An edge sequence (by default, but see the `return.vs.es` option
#' of [igraph_options()]) containing the feedback arc set.
#' @references Peter Eades, Xuemin Lin and W.F.Smyth: A fast and effective
#' heuristic for the feedback arc set problem. *Information Processing Letters*
#' 47:6, pp. 319-323, 1993
#' @keywords graphs
#' @family structural.properties
#' @family cycles
#' @export
#' @examples
#'
#' g <- sample_gnm(20, 40, directed = TRUE)
#' feedback_arc_set(g)
#' feedback_arc_set(g, algo = "approx_eades")
#' @cdocs igraph_feedback_arc_set
feedback_arc_set <- feedback_arc_set_impl
#' Finding a feedback vertex set in a graph
#'
#' @description
#' `r lifecycle::badge("experimental")`
#'
#' A feedback vertex set of a graph is a subset of vertices whose removal breaks
#' all cycles in the graph. Finding a _minimum_ feedback vertex set is an
#' NP-complete problem, both on directed and undirected graphs.
#'
#' @param graph The input graph
#' @param weights Potential vertex weights. If the graph has a vertex
#' attribute called \sQuote{`weight`}, and this argument is
#' `NULL`, then the vertex attribute is used automatically. The goal of
#' the feedback vertex set problem is to find a feedback vertex set with
#' the smallest total weight.
#' @param algo Specifies the algorithm to use. Currently, \dQuote{`exact_ip`},
#' which solves the feedback vertex set problem with an exact integer
#' programming approach, is the only option.
#' @return A vertex sequence (by default, but see the `return.vs.es` option
#' of [igraph_options()]) containing the feedback vertex set.
#' @keywords graphs
#' @family structural.properties
#' @family cycles
#' @export
#' @examples
#'
#' g <- make_lattice(c(3,3))
#' feedback_vertex_set(g)
#' @cdocs igraph_feedback_vertex_set
feedback_vertex_set <- feedback_vertex_set_impl
#' Girth of a graph
#'
#' The girth of a graph is the length of the shortest circle in it.
#'
#' The current implementation works for undirected graphs only, directed graphs
#' are treated as undirected graphs. Loop edges and multiple edges are ignored.
#' If the graph is a forest (i.e. acyclic), then `Inf` is returned.
#'
#' This implementation is based on Alon Itai and Michael Rodeh: Finding a
#' minimum circuit in a graph *Proceedings of the ninth annual ACM
#' symposium on Theory of computing*, 1-10, 1977. The first implementation of
#' this function was done by Keith Briggs, thanks Keith.
#'
#' @param graph The input graph. It may be directed, but the algorithm searches
#' for undirected circles anyway.
#' @param circle Logical scalar, whether to return the shortest circle itself.
#' @return A named list with two components:
#' \describe{
#' \item{girth}{
#' Integer constant, the girth of the graph, or `Inf` if the graph is acyclic.
#' }
#' \item{circle}{
#' Numeric vector with the vertex ids in the shortest circle.
#' }
#' }
#' @author Gabor Csardi \email{csardi.gabor@@gmail.com}
#' @references Alon Itai and Michael Rodeh: Finding a minimum circuit in a
#' graph *Proceedings of the ninth annual ACM symposium on Theory of
#' computing*, 1-10, 1977
#' @family structural.properties
#' @family cycles
#' @export
#' @keywords graphs
#' @examples
#'
#' # No circle in a tree
#' g <- make_tree(1000, 3)
#' girth(g)
#'
#' # The worst case running time is for a ring
#' g <- make_ring(100)
#' girth(g)
#'
#' # What about a random graph?
#' g <- sample_gnp(1000, 1 / 1000)
#' girth(g)
#'
girth <- function(graph, circle = TRUE) {
ensure_igraph(graph)
on.exit(.Call(R_igraph_finalizer))
res <- .Call(R_igraph_girth, graph, as.logical(circle))
if (res$girth == 0) {
res$girth <- Inf
}
if (igraph_opt("return.vs.es") && circle) {
res$circle <- create_vs(graph, res$circle)
}
res
}
#' Find the multiple or loop edges in a graph
#'
#' A loop edge is an edge from a vertex to itself. An edge is a multiple edge
#' if it has exactly the same head and tail vertices as another edge. A graph
#' without multiple and loop edges is called a simple graph.
#'
#' `any_loop()` decides whether the graph has any loop edges.
#'
#' `which_loop()` decides whether the edges of the graph are loop edges.
#'
#' `any_multiple()` decides whether the graph has any multiple edges.
#'
#' `which_multiple()` decides whether the edges of the graph are multiple
#' edges.
#'
#' `count_multiple()` counts the multiplicity of each edge of a graph.
#'
#' Note that the semantics for `which_multiple()` and `count_multiple()` is
#' different. `which_multiple()` gives `TRUE` for all occurrences of a
#' multiple edge except for one. I.e. if there are three `i-j` edges in the
#' graph then `which_multiple()` returns `TRUE` for only two of them while
#' `count_multiple()` returns \sQuote{3} for all three.
#'
#' See the examples for getting rid of multiple edges while keeping their
#' original multiplicity as an edge attribute.
#'
#' @param graph The input graph.
#' @param eids The edges to which the query is restricted. By default this is
#' all edges in the graph.
#' @return `any_loop()` and `any_multiple()` return a logical scalar.
#' `which_loop()` and `which_multiple()` return a logical vector.
#' `count_multiple()` returns a numeric vector.
#' @author Gabor Csardi \email{csardi.gabor@@gmail.com}
#' @seealso [simplify()] to eliminate loop and multiple edges.
#' @family structural.properties
#' @export
#' @keywords graphs
#' @examples
#'
#' # Loops
#' g <- make_graph(c(1, 1, 2, 2, 3, 3, 4, 5))
#' any_loop(g)
#' which_loop(g)
#'
#' # Multiple edges
#' g <- sample_pa(10, m = 3, algorithm = "bag")
#' any_multiple(g)
#' which_multiple(g)
#' count_multiple(g)
#' which_multiple(simplify(g))
#' all(count_multiple(simplify(g)) == 1)
#'
#' # Direction of the edge is important
#' which_multiple(make_graph(c(1, 2, 2, 1)))
#' which_multiple(make_graph(c(1, 2, 2, 1), dir = FALSE))
#'
#' # Remove multiple edges but keep multiplicity
#' g <- sample_pa(10, m = 3, algorithm = "bag")
#' E(g)$weight <- count_multiple(g)
#' g <- simplify(g, edge.attr.comb = list(weight = "min"))
#' any(which_multiple(g))
#' E(g)$weight
#'
#' @cdocs igraph_is_multiple
which_multiple <- is_multiple_impl
#' @rdname which_multiple
#' @export
#' @cdocs igraph_has_multiple
any_multiple <- has_multiple_impl
#' @rdname which_multiple
#' @export
#' @cdocs igraph_count_multiple
count_multiple <- count_multiple_impl
#' @rdname which_multiple
#' @export
#' @cdocs igraph_is_loop
which_loop <- is_loop_impl
#' @rdname which_multiple
#' @export
#' @cdocs igraph_has_loop
any_loop <- has_loop_impl
#' Breadth-first search
#'
#' Breadth-first search is an algorithm to traverse a graph. We start from a
#' root vertex and spread along every edge \dQuote{simultaneously}.
#'
#'
#' The callback function must have the following arguments:
#' \describe{
#' \item{graph}{
#' The input graph is passed to the callback function here.
#' }
#' \item{data}{
#' A named numeric vector, with the following entries:
#' \sQuote{vid}, the vertex that was just visited,
#' \sQuote{pred}, its predecessor (zero if this is the first vertex),
#' \sQuote{succ}, its successor (zero if this is the last vertex),
#' \sQuote{rank}, the rank of the current vertex,
#' \sQuote{dist}, its distance from the root of the search tree.
#' }
#' \item{extra}{
#' The extra argument.
#' }
#' }
#'
#' The callback must return `FALSE`
#' to continue the search or `TRUE` to terminate it. See examples below on how to
#' use the callback function.
#'
#' @param graph The input graph.
#' @param root Numeric vector, usually of length one. The root vertex, or root
#' vertices to start the search from.
#' @param mode For directed graphs specifies the type of edges to follow.
#' \sQuote{out} follows outgoing, \sQuote{in} incoming edges. \sQuote{all}
#' ignores edge directions completely. \sQuote{total} is a synonym for
#' \sQuote{all}. This argument is ignored for undirected graphs.
#' @param unreachable Logical scalar, whether the search should visit the
#' vertices that are unreachable from the given root vertex (or vertices). If
#' `TRUE`, then additional searches are performed until all vertices are
#' visited.
#' @param restricted `NULL` (=no restriction), or a vector of vertices
#' (ids or symbolic names). In the latter case, the search is restricted to the
#' given vertices.
#' @param order Logical scalar, whether to return the ordering of the vertices.
#' @param rank Logical scalar, whether to return the rank of the vertices.
#' @param father `r lifecycle::badge("deprecated")` Use `parent` instead.
#' @param parent Logical scalar, whether to return the parent of the vertices.
#' @param pred Logical scalar, whether to return the predecessors of the
#' vertices.
#' @param succ Logical scalar, whether to return the successors of the
#' vertices.
#' @param dist Logical scalar, whether to return the distance from the root of
#' the search tree.
#' @param callback If not `NULL`, then it must be callback function. This
#' is called whenever a vertex is visited. See details below.
#' @param extra Additional argument to supply to the callback function.
#' @param rho The environment in which the callback function is evaluated.
#' @param neimode `r lifecycle::badge("deprecated")` This argument is deprecated
#' from igraph 1.3.0; use `mode` instead.
#' @inheritParams rlang::args_dots_empty
#' @return A named list with the following entries:
#' \describe{
#' \item{root}{
#' Numeric scalar. The root vertex that was used as the starting point of the search.
#' }
#' \item{neimode}{
#' Character scalar. The `mode` argument of the function call.
#' Note that for undirected graphs this is always \sQuote{all}, irrespectively of the supplied value.
#' }
#' \item{order}{
#' Numeric vector. The vertex ids, in the order in which they were visited by the search.
#' }
#' \item{rank}{
#' Numeric vector. The rank for each vertex, zero for unreachable vertices.
#' }
#' \item{parent}{
#' Numeric vector. The parent of each vertex, i.e. the vertex it was discovered from.
#' }
#' \item{father}{
#' Like parent, kept for compatibility for now.
#' }
#' \item{pred}{
#' Numeric vector. The previously visited vertex for each vertex, or 0 if there was no such vertex.
#' }
#' \item{succ}{
#' Numeric vector. The next vertex that was visited after the current one, or 0 if there was no such vertex.
#' }
#' \item{dist}{
#' Numeric vector, for each vertex its distance from the root of the search tree.
#' Unreachable vertices have a negative distance as of igraph 1.6.0, this used to be `NaN`.
#' }
#' }
#'
#' Note that `order`, `rank`, `parent`, `pred`, `succ`
#' and `dist` might be `NULL` if their corresponding argument is
#' `FALSE`, i.e. if their calculation is not requested.
#' @author Gabor Csardi \email{csardi.gabor@@gmail.com}
#' @seealso [dfs()] for depth-first search.
#' @family structural.properties
#' @export
#' @keywords graphs
#' @examples
#'
#' ## Two rings
#' bfs(make_ring(10) %du% make_ring(10),
#' root = 1, "out",
#' order = TRUE, rank = TRUE, parent = TRUE, pred = TRUE,
#' succ = TRUE, dist = TRUE
#' )
#'
#' ## How to use a callback
#' f <- function(graph, data, extra) {
#' print(data)
#' FALSE
#' }
#' tmp <- bfs(make_ring(10) %du% make_ring(10),
#' root = 1, "out",
#' callback = f
#' )
#'
#' ## How to use a callback to stop the search
#' ## We stop after visiting all vertices in the initial component
#' f <- function(graph, data, extra) {
#' data["succ"] == -1
#' }
#' bfs(make_ring(10) %du% make_ring(10), root = 1, callback = f)
#'
bfs <- function(
graph,
root,
mode = c("out", "in", "all", "total"),
...,
unreachable = TRUE,
restricted = NULL,
order = TRUE,
rank = FALSE,
parent = FALSE,
pred = FALSE,
succ = FALSE,
dist = FALSE,
callback = NULL,
extra = NULL,
rho = parent.frame(),
neimode = deprecated(),
father = deprecated()
) {
rlang::check_dots_empty()
ensure_igraph(graph)
if (lifecycle::is_present(neimode)) {
lifecycle::deprecate_stop(
"1.3.0",
"bfs(neimode = )",
"bfs(mode = )"
)
}
if (lifecycle::is_present(father)) {
lifecycle::deprecate_warn("2.2.0", "bfs(father = )", "bfs(parent = )")
if (missing(parent)) {
parent <- father
}
}
if (length(root) == 1) {
root <- as_igraph_vs(graph, root) - 1
roots <- NULL
} else {
roots <- as_igraph_vs(graph, root) - 1
root <- 0 # ignored anyway
}
mode <- switch(
igraph.match.arg(mode),
"out" = 1,
"in" = 2,
"all" = 3,
"total" = 3
)
unreachable <- as.logical(unreachable)
if (!is.null(restricted)) {
restricted <- as_igraph_vs(graph, restricted) - 1
}
if (!is.null(callback)) {
callback <- as.function(callback)
}
on.exit(.Call(R_igraph_finalizer))
res <- .Call(
R_igraph_bfs,
graph,
root,
roots,
mode,
unreachable,
restricted,
as.logical(order),
as.logical(rank),
as.logical(parent),
as.logical(pred),
as.logical(succ),
as.logical(dist),
callback,
extra,
rho
)
# Remove in 1.4.0
res$neimode <- res$mode
if (order) {
res$order <- res$order + 1
}
if (rank) {
res$rank <- res$rank + 1
}
if (parent) {
res$parent <- res$parent + 1
}
if (pred) {
res$pred <- res$pred + 1
}
if (succ) {
res$succ <- res$succ + 1
}
if (igraph_opt("return.vs.es")) {
if (order) {
res$order <- V(graph)[.env$res$order, na_ok = TRUE]
}
if (parent) {
res$parent <- create_vs(graph, res$parent, na_ok = TRUE)
}
if (pred) {
res$pred <- create_vs(graph, res$pred, na_ok = TRUE)
}
if (succ) res$succ <- create_vs(graph, res$succ, na_ok = TRUE)
} else {
if (order) res$order <- res$order[res$order != 0]
}
if (igraph_opt("add.vertex.names") && is_named(graph)) {
if (rank) {
names(res$rank) <- V(graph)$name
}
if (parent) {
names(res$parent) <- V(graph)$name
}
if (pred) {
names(res$pred) <- V(graph)$name
}
if (succ) {
names(res$succ) <- V(graph)$name
}
if (dist) names(res$dist) <- V(graph)$name
}
if (rank) {
res$rank[is.nan(res$rank)] <- 0
}
if (dist) {
res$dist[is.nan(res$dist)] <- -3
}
# Remove this later? https://github.com/igraph/rigraph/issues/1576
res$father <- res$parent
res
}
#' Depth-first search
#'
#' Depth-first search is an algorithm to traverse a graph. It starts from a
#' root vertex and tries to go quickly as far from as possible.
#'
#' The callback functions must have the following arguments:
#' \describe{
#' \item{graph}{
#' The input graph is passed to the callback function here.
#' }
#' \item{data}{
#' A named numeric vector, with the following entries:
#' \sQuote{vid}, the vertex that was just visited and
#' \sQuote{dist}, its distance from the root of the search tree.
#' }
#' \item{extra}{
#' The extra argument.
#' }
#' } The callback must return FALSE to continue the search or TRUE
#' to terminate it. See examples below on how to use the callback functions.
#'
#' @param graph The input graph.
#' @param root The single root vertex to start the search from.
#' @param mode For directed graphs specifies the type of edges to follow.
#' \sQuote{out} follows outgoing, \sQuote{in} incoming edges. \sQuote{all}
#' ignores edge directions completely. \sQuote{total} is a synonym for
#' \sQuote{all}. This argument is ignored for undirected graphs.
#' @param unreachable Logical scalar, whether the search should visit the
#' vertices that are unreachable from the given root vertex (or vertices). If
#' `TRUE`, then additional searches are performed until all vertices are
#' visited.
#' @param order Logical scalar, whether to return the DFS ordering of the
#' vertices.
#' @param order.out Logical scalar, whether to return the ordering based on
#' leaving the subtree of the vertex.
#' @param father `r lifecycle::badge("deprecated")`, use `parent` instead.
#' @param parent Logical scalar, whether to return the parent of the vertices.
#' @param dist Logical scalar, whether to return the distance from the root of
#' the search tree.
#' @param in.callback If not `NULL`, then it must be callback function.
#' This is called whenever a vertex is visited. See details below.
#' @param out.callback If not `NULL`, then it must be callback function.
#' This is called whenever the subtree of a vertex is completed by the
#' algorithm. See details below.
#' @param extra Additional argument to supply to the callback function.
#' @param rho The environment in which the callback function is evaluated.
#' @param neimode `r lifecycle::badge("deprecated")` This argument is deprecated from igraph 1.3.0; use
#' `mode` instead.
#' @inheritParams rlang::args_dots_empty
#' @return A named list with the following entries:
#' \describe{
#' \item{root}{
#' Numeric scalar. The root vertex that was used as the starting point of the search.
#' }
#' \item{neimode}{
#' Character scalar. The `mode` argument of the function call.
#' Note that for undirected graphs this is always \sQuote{all}, irrespectively of the supplied value.
#' }
#' \item{order}{
#' Numeric vector. The vertex ids, in the order in which they were visited by the search.
#' }
#' \item{order.out}{
#' Numeric vector, the vertex ids, in the order of the completion of their subtree.
#' }
#' \item{parent}{
#' Numeric vector. The parent of each vertex, i.e. the vertex it was discovered from.
#' }
#' \item{father}{
#' Like parent, kept for compatibility for now.
#' }
#' \item{dist}{
#' Numeric vector, for each vertex its distance from the root of the search tree.
#' }
#' }
#'
#' Note that `order`, `order.out`, `parent`, and `dist`
#' might be `NULL` if their corresponding argument is `FALSE`, i.e.
#' if their calculation is not requested.
#' @author Gabor Csardi \email{csardi.gabor@@gmail.com}
#' @seealso [bfs()] for breadth-first search.
#' @family structural.properties
#' @export
#' @keywords graphs
#' @examples
#'
#' ## A graph with two separate trees
#' dfs(
#' graph = make_tree(10) %du% make_tree(10),
#' root = 1, mode = "out",
#' unreachable = TRUE,
#' order = TRUE,
#' order.out = TRUE,
#' parent = TRUE
#' )
#'
#' ## How to use a callback
#' f.in <- function(graph, data, extra) {
#' cat("in:", paste(collapse = ", ", data), "\n")
#' FALSE
#' }
#' f.out <- function(graph, data, extra) {
#' cat("out:", paste(collapse = ", ", data), "\n")
#' FALSE
#' }
#' tmp <- dfs(
#' graph = make_tree(10),
#' root = 1, mode = "out",
#' in.callback = f.in, out.callback = f.out
#' )
#'
#' ## Terminate after the first component, using a callback
#' f.out <- function(graph, data, extra) {
#' data["vid"] == 1
#' }
#' tmp <- dfs(
#' graph = make_tree(10) %du% make_tree(10),
#' root = 1,
#' out.callback = f.out
#' )
#'
dfs <- function(
graph,
root,
mode = c("out", "in", "all", "total"),
...,
unreachable = TRUE,
order = TRUE,
order.out = FALSE,
parent = FALSE,
dist = FALSE,
in.callback = NULL,
out.callback = NULL,
extra = NULL,
rho = parent.frame(),
neimode = deprecated(),
father = deprecated()
) {
rlang::check_dots_empty()
ensure_igraph(graph)
if (lifecycle::is_present(neimode)) {
lifecycle::deprecate_stop(
"1.3.0",
"dfs(neimode = )",
"dfs(mode = )"
)
}
if (lifecycle::is_present(father)) {
lifecycle::deprecate_warn("2.2.0", "dfs(father = )", "dfs(parent = )")
if (missing(parent)) {
parent <- father
}
}
root <- as_igraph_vs(graph, root) - 1
mode <- switch(
igraph.match.arg(mode),
"out" = 1,
"in" = 2,
"all" = 3,
"total" = 3
)
unreachable <- as.logical(unreachable)
if (!is.null(in.callback)) {
in.callback <- as.function(in.callback)
}
if (!is.null(out.callback)) {
out.callback <- as.function(out.callback)
}
on.exit(.Call(R_igraph_finalizer))
res <- .Call(
R_igraph_dfs,
graph,
root,
mode,
unreachable,
as.logical(order),
as.logical(order.out),
as.logical(parent),
as.logical(dist),
in.callback,
out.callback,
extra,
rho
)
# Remove in 1.4.0
res$neimode <- res$mode
if (order) {
res$order <- res$order + 1
}
if (order.out) {
res$order.out <- res$order.out + 1
}
if (parent) {
res$parent <- res$parent + 1
}
if (igraph_opt("return.vs.es")) {
if (order) {
res$order <- V(graph)[.env$res$order, na_ok = TRUE]
}
if (order.out) {
res$order.out <- V(graph)[.env$res$order.out, na_ok = TRUE]
}
if (parent) res$parent <- create_vs(graph, res$parent, na_ok = TRUE)
} else {
if (order) {
res$order <- res$order[res$order != 0]
}
if (order.out) res$order.out <- res$order.out[res$order.out != 0]
}
if (igraph_opt("add.vertex.names") && is_named(graph)) {
if (parent) {
names(res$parent) <- V(graph)$name
}
if (dist) names(res$dist) <- V(graph)$name
}
# Remove this later? https://github.com/igraph/rigraph/issues/1576
res$father <- res$parent
res
}
#' Connected components of a graph
#'
#' Calculate the maximal (weakly or strongly) connected components of a graph
#'
#' `is_connected()` decides whether the graph is weakly or strongly
#' connected. The null graph is considered disconnected.
#'
#' `components()` finds the maximal (weakly or strongly) connected components
#' of a graph.
#'
#' `count_components()` does almost the same as `components()` but returns only
#' the number of clusters found instead of returning the actual clusters.
#'
#' `component_distribution()` creates a histogram for the maximal connected
#' component sizes.
#'
#' `largest_component()` returns the largest connected component of a graph. For
#' directed graphs, optionally the largest weakly or strongly connected component.
#' In case of a tie, the first component by vertex ID order is returned. Vertex
#' IDs from the original graph are not retained in the returned graph.
#'
#' The weakly connected components are found by a simple breadth-first search.
#' The strongly connected components are implemented by two consecutive
#' depth-first searches.
#'
#' @param graph The graph to analyze.
#' @param mode Character string, either \dQuote{weak} or \dQuote{strong}. For
#' directed graphs \dQuote{weak} implies weakly, \dQuote{strong} strongly
#' connected components to search. It is ignored for undirected graphs.
#' @param \dots Additional attributes to pass to `cluster`, right now only
#' `mode` makes sense.
#' @return For `is_connected()` a logical constant.
#'
#' For `components()` a named list with three components:
#' \describe{
#' \item{membership}{
#' numeric vector giving the cluster id to which each vertex belongs.
#' }
#' \item{csize}{
#' numeric vector giving the sizes of the clusters.
#' }
#' \item{no}{
#' numeric constant, the number of clusters.
#' }
#' }
#'
#' For `count_components()` an integer constant is returned.
#'
#' For `component_distribution()` a numeric vector with the relative
#' frequencies. The length of the vector is the size of the largest component
#' plus one. Note that (for currently unknown reasons) the first element of the
#' vector is the number of clusters of size zero, so this is always zero.
#'
#' For `largest_component()` the largest connected component of the graph.
#' @author Gabor Csardi \email{csardi.gabor@@gmail.com}
#' @seealso [decompose()], [subcomponent()], [groups()]
#' @family structural.properties
#' @export
#' @keywords graphs
#' @examples
#'
#' g <- sample_gnp(20, 1 / 20)
#' clu <- components(g)
#' groups(clu)
#' largest_component(g)
components <- function(graph, mode = c("weak", "strong")) {
# Argument checks
ensure_igraph(graph)
mode <- switch(igraph.match.arg(mode), "weak" = 1, "strong" = 2)
on.exit(.Call(R_igraph_finalizer))
# Function call
res <- .Call(R_igraph_connected_components, graph, mode)
res$membership <- res$membership + 1
if (igraph_opt("add.vertex.names") && is_named(graph)) {
names(res$membership) <- V(graph)$name
}
res
}
#' @rdname components
#' @export
#' @cdocs igraph_is_connected
is_connected <- is_connected_impl
#' @rdname components
#' @export
count_components <- function(graph, mode = c("weak", "strong")) {
ensure_igraph(graph)
mode <- igraph.match.arg(mode)
mode <- switch(mode, "weak" = 1L, "strong" = 2L)
on.exit(.Call(R_igraph_finalizer))
.Call(R_igraph_no_components, graph, mode)
}
#' Convert a general graph into a forest
#'
#' Perform a breadth-first search on a graph and convert it into a tree or
#' forest by replicating vertices that were found more than once.
#'
#' A forest is a graph, whose components are trees.
#'
#' The `roots` vector can be calculated by simply doing a topological sort
#' in all components of the graph, see the examples below.
#'
#' @param graph The input graph, it can be either directed or undirected.
#' @param mode Character string, defined the types of the paths used for the
#' breadth-first search. \dQuote{out} follows the outgoing, \dQuote{in} the
#' incoming edges, \dQuote{all} and \dQuote{total} both of them. This argument
#' is ignored for undirected graphs.
#' @param roots A vector giving the vertices from which the breadth-first
#' search is performed. Typically it contains one vertex per component.
#' @return A list with two components:
#' \describe{
#' \item{tree}{
#' The result, an `igraph` object, a tree or a forest.
#' }
#' \item{vertex_index}{
#' A numeric vector, it gives a mapping from the vertices of the new graph to the vertices of the old graph.
#' }
#' }
#' @author Gabor Csardi \email{csardi.gabor@@gmail.com}
#' @family structural.properties
#' @export
#' @keywords graphs
#' @examples
#'
#' g <- make_tree(10) %du% make_tree(10)
#' V(g)$id <- seq_len(vcount(g)) - 1
#' roots <- sapply(decompose(g), function(x) {
#' V(x)$id[topo_sort(x)[1] + 1]
#' })
#' tree <- unfold_tree(g, roots = roots)
#'
unfold_tree <- function(graph, mode = c("all", "out", "in", "total"), roots) {
# Argument checks
ensure_igraph(graph)
mode <- switch(
igraph.match.arg(mode),
"out" = 1,
"in" = 2,
"all" = 3,
"total" = 3
)
roots <- as_igraph_vs(graph, roots) - 1
on.exit(.Call(R_igraph_finalizer))
# Function call
res <- .Call(R_igraph_unfold_tree, graph, mode, roots)
res
}
#' Graph Laplacian
#'
#' The Laplacian of a graph.
#'
#' The Laplacian Matrix of a graph is a symmetric matrix having the same number
#' of rows and columns as the number of vertices in the graph and element (i,j)
#' is d\[i\], the degree of vertex i if if i==j, -1 if i!=j and there is an edge
#' between vertices i and j and 0 otherwise.
#'
#' The Laplacian matrix can also be normalized, with several
#' conventional normalization methods.
#' See the "Normalization methods" section on this page.
#'
#' The weighted version of the Laplacian simply works with the weighted degree
#' instead of the plain degree. I.e. (i,j) is d\[i\], the weighted degree of
#' vertex i if if i==j, -w if i!=j and there is an edge between vertices i and
#' j with weight w, and 0 otherwise. The weighted degree of a vertex is the sum
#' of the weights of its adjacent edges.
#'
#' @param graph The input graph.
#' @param normalization The normalization method to use when calculating the
#' Laplacian matrix. See the "Normalization methods" section on this page.
#' @param normalized Deprecated, use `normalization` instead.
#' @param weights An optional vector giving edge weights for weighted Laplacian
#' matrix. If this is `NULL` and the graph has an edge attribute called
#' `weight`, then it will be used automatically. Set this to `NA` if
#' you want the unweighted Laplacian on a graph that has a `weight` edge
#' attribute.
#' @param sparse Logical scalar, whether to return the result as a sparse
#' matrix. The `Matrix` package is required for sparse matrices.
#' @return A numeric matrix.
#' @author Gabor Csardi \email{csardi.gabor@@gmail.com}
#' @export
#' @keywords graphs
#' @section Normalization methods:
#'
#' The Laplacian matrix \eqn{L} is defined in terms of the adjacency matrix
#' \eqn{A} and a diagonal matrix \eqn{D} containing the degrees as follows:
#'
#' - "unnormalized": Unnormalized Laplacian, \eqn{L = D - A}.
#' - "symmetric": Symmetrically normalized Laplacian,
#' \eqn{L = I - D^{-\frac{1}{2}} A D^{-\frac{1}{2}}}{L = I - D^(-1/2) A D^(-1/2)}.
#' - "left": Left-stochastic normalized Laplacian, \eqn{{L = I - D^{-1} A}}{L = I - D^-1 A}.
#' - "right": Right-stochastic normalized Laplacian, \eqn{L = I - A D^{-1}}{L = I - A D^-1}.
#'
#' @examples
#'
#' g <- make_ring(10)
#' laplacian_matrix(g)
#' laplacian_matrix(g, normalization = "unnormalized")
#' laplacian_matrix(g, normalization = "unnormalized", sparse = FALSE)
#'
#' @cdocs igraph_get_laplacian
#' @cdocs igraph_get_laplacian_sparse
laplacian_matrix <- function(
graph,
weights = NULL,
sparse = igraph_opt("sparsematrices"),
normalization = c("unnormalized", "symmetric", "left", "right"),
normalized
) {
# Argument checks
if (lifecycle::is_present(normalized)) {
lifecycle::deprecate_soft(
"2.0.3",
"make_lattice(normalized = 'provide normalization instead')",
details = c(
"`normalized` is now deprecated, use `normalization` instead."
)
)
normalized <- as.logical(normalized)
normalization <- "unnormalized"
if (normalized) {
if (is_directed(graph)) {
normalization <- "left"
} else {
normalization <- "symmetric"
}
}
}
ensure_igraph(graph)
if (is.null(weights) && "weight" %in% edge_attr_names(graph)) {
weights <- E(graph)$weight
}
if (!is.null(weights) && any(!is.na(weights))) {
weights <- as.numeric(weights)
} else {
weights <- NULL
}
sparse <- as.logical(sparse)
on.exit(.Call(R_igraph_finalizer))
# Function call
if (sparse) {
res <- get_laplacian_sparse_impl(graph, "out", normalization, weights)
} else {
res <- get_laplacian_impl(graph, "out", normalization, weights)
}
if (sparse) {
res <- igraph.i.spMatrix(res)
}
if (igraph_opt("add.vertex.names") && is_named(graph)) {
rownames(res) <- colnames(res) <- V(graph)$name
}
res
}
#' Matching
#'
#' A matching in a graph means the selection of a set of edges that are
#' pairwise non-adjacent, i.e. they have no common incident vertices. A
#' matching is maximal if it is not a proper subset of any other matching.
#'
#' `is_matching()` checks a matching vector and verifies whether its
#' length matches the number of vertices in the given graph, its values are
#' between zero (inclusive) and the number of vertices (inclusive), and
#' whether there exists a corresponding edge in the graph for every matched
#' vertex pair. For bipartite graphs, it also verifies whether the matched
#' vertices are in different parts of the graph.
#'
#' `is_max_matching()` checks whether a matching is maximal. A matching
#' is maximal if and only if there exists no unmatched vertex in a graph
#' such that one of its neighbors is also unmatched.
#'
#' `max_bipartite_match()` calculates a maximum matching in a bipartite
#' graph. A matching in a bipartite graph is a partial assignment of
#' vertices of the first kind to vertices of the second kind such that each
#' vertex of the first kind is matched to at most one vertex of the second
#' kind and vice versa, and matched vertices must be connected by an edge
#' in the graph. The size (or cardinality) of a matching is the number of
#' edges. A matching is a maximum matching if there exists no other
#' matching with larger cardinality. For weighted graphs, a maximum
#' matching is a matching whose edges have the largest possible total
#' weight among all possible matchings.
#'
#' Maximum matchings in bipartite graphs are found by the push-relabel
#' algorithm with greedy initialization and a global relabeling after every
#' \eqn{n/2} steps where \eqn{n} is the number of vertices in the graph.
#'
#' @rdname matching
#' @aliases max_bipartite_match
#' @param graph The input graph. It might be directed, but edge directions will
#' be ignored.
#' @param types Vertex types, if the graph is bipartite. By default they
#' are taken from the \sQuote{`type`} vertex attribute, if present.
#' @param matching A potential matching. An integer vector that gives the
#' pair in the matching for each vertex. For vertices without a pair,
#' supply `NA` here.
#' @param weights Potential edge weights. If the graph has an edge
#' attribute called \sQuote{`weight`}, and this argument is
#' `NULL`, then the edge attribute is used automatically.
#' In weighted matching, the weights of the edges must match as
#' much as possible.
#' @param eps A small real number used in equality tests in the weighted
#' bipartite matching algorithm. Two real numbers are considered equal in
#' the algorithm if their difference is smaller than `eps`. This is
#' required to avoid the accumulation of numerical errors. By default it is
#' set to the smallest \eqn{x}, such that \eqn{1+x \ne 1}{1+x != 1}
#' holds. If you are running the algorithm with no weights, this argument
#' is ignored.
#' @return `is_matching()` and `is_max_matching()` return a logical
#' scalar.
#'
#' `max_bipartite_match()` returns a list with components:
#' \describe{
#' \item{matching_size}{
#' The size of the matching, i.e. the number of edges connecting the matched vertices.
#' }
#' \item{matching_weight}{
#' The weights of the matching, if the graph was weighted.
#' For unweighted graphs this is the same as the size of the matching.
#' }
#' \item{matching}{
#' The matching itself.
#' Numeric vertex id, or vertex names if the graph was named.
#' Non-matched vertices are denoted by `NA`.
#' }
#' }
#' @author Tamas Nepusz \email{ntamas@@gmail.com}
#' @examples
#' g <- graph_from_literal(a - b - c - d - e - f)
#' m1 <- c("b", "a", "d", "c", "f", "e") # maximal matching
#' m2 <- c("b", "a", "d", "c", NA, NA) # non-maximal matching
#' m3 <- c("b", "c", "d", "c", NA, NA) # not a matching
#' is_matching(g, m1)
#' is_matching(g, m2)
#' is_matching(g, m3)
#' is_max_matching(g, m1)
#' is_max_matching(g, m2)
#' is_max_matching(g, m3)
#'
#' V(g)$type <- rep(c(FALSE, TRUE), 3)
#' print_all(g, v = TRUE)
#' max_bipartite_match(g)
#'
#' g2 <- graph_from_literal(a - b - c - d - e - f - g)
#' V(g2)$type <- rep(c(FALSE, TRUE), length.out = vcount(g2))
#' print_all(g2, v = TRUE)
#' max_bipartite_match(g2)
#' #' @keywords graphs
#' @family structural.properties
#' @export
is_matching <- function(graph, matching, types = NULL) {
# Argument checks
ensure_igraph(graph)
types <- handle_vertex_type_arg(types, graph, required = F)
matching <- as_igraph_vs(graph, matching, na.ok = TRUE) - 1
matching[is.na(matching)] <- -1
on.exit(.Call(R_igraph_finalizer))
# Function call
res <- .Call(R_igraph_is_matching, graph, types, matching)
res
}
#' @export
#' @rdname matching
is_max_matching <- function(graph, matching, types = NULL) {
# Argument checks
ensure_igraph(graph)
types <- handle_vertex_type_arg(types, graph, required = F)
matching <- as_igraph_vs(graph, matching, na.ok = TRUE) - 1
matching[is.na(matching)] <- -1
on.exit(.Call(R_igraph_finalizer))
# Function call
res <- .Call(R_igraph_is_maximal_matching, graph, types, matching)
res
}
#' @export
#' @rdname matching
max_bipartite_match <- function(
graph,
types = NULL,
weights = NULL,
eps = .Machine$double.eps
) {
# Argument checks
ensure_igraph(graph)
types <- handle_vertex_type_arg(types, graph)
if (is.null(weights) && "weight" %in% edge_attr_names(graph)) {
weights <- E(graph)$weight
}
if (!is.null(weights) && any(!is.na(weights))) {
weights <- as.numeric(weights)
} else {
weights <- NULL
}
eps <- as.numeric(eps)
on.exit(.Call(R_igraph_finalizer))
# Function call
res <- .Call(
R_igraph_maximum_bipartite_matching,
graph,
types,
weights,
eps
)
res$matching[res$matching == 0] <- NA
if (igraph_opt("add.vertex.names") && is_named(graph)) {
res$matching <- V(graph)$name[res$matching]
names(res$matching) <- V(graph)$name
}
res
}
#' Find mutual edges in a directed graph
#'
#' This function checks the reciprocal pair of the supplied edges.
#'
#' In a directed graph an (A,B) edge is mutual if the graph also includes a
#' (B,A) directed edge.
#'
#' Note that multi-graphs are not handled properly, i.e. if the graph contains
#' two copies of (A,B) and one copy of (B,A), then these three edges are
#' considered to be mutual.
#'
#' Undirected graphs contain only mutual edges by definition.
#'
#' @param graph The input graph.
#' @param eids Edge sequence, the edges that will be probed. By default is
#' includes all edges in the order of their ids.
#' @param loops Logical, whether to consider directed self-loops to be mutual.
#' @return A logical vector of the same length as the number of edges supplied.
#' @author Gabor Csardi \email{csardi.gabor@@gmail.com}
#' @seealso [reciprocity()], [dyad_census()] if you just
#' want some statistics about mutual edges.
#' @keywords graphs
#' @examples
#'
#' g <- sample_gnm(10, 50, directed = TRUE)
#' reciprocity(g)
#' dyad_census(g)
#' which_mutual(g)
#' sum(which_mutual(g)) / 2 == dyad_census(g)$mut
#' @family structural.properties
#' @export
#' @cdocs igraph_is_mutual
which_mutual <- is_mutual_impl
#' Average nearest neighbor degree
#'
#' Calculate the average nearest neighbor degree of the given vertices and the
#' same quantity in the function of vertex degree
#'
#' Note that for zero degree vertices the answer in \sQuote{`knn`} is
#' `NaN` (zero divided by zero), the same is true for \sQuote{`knnk`}
#' if a given degree never appears in the network.
#'
#' The weighted version computes a weighted average of the neighbor degrees as
#'
#' \deqn{k_{nn,u} = \frac{1}{s_u} \sum_v w_{uv} k_v,}{k_nn_u = 1/s_u sum_v w_uv k_v,}
#'
#' where \eqn{s_u = \sum_v w_{uv}}{s_u = sum_v w_uv} is the sum of the incident
#' edge weights of vertex `u`, i.e. its strength.
#' The sum runs over the neighbors `v` of vertex `u`
#' as indicated by `mode`. \eqn{w_{uv}}{w_uv} denotes the weighted adjacency matrix
#' and \eqn{k_v}{k_v} is the neighbors' degree, specified by `neighbor_degree_mode`.
#'
#' @param graph The input graph. It may be directed.
#' @param vids The vertices for which the calculation is performed. Normally it
#' includes all vertices. Note, that if not all vertices are given here, then
#' both \sQuote{`knn`} and \sQuote{`knnk`} will be calculated based
#' on the given vertices only.
#' @param mode Character constant to indicate the type of neighbors to consider
#' in directed graphs. `out` considers out-neighbors, `in` considers
#' in-neighbors and `all` ignores edge directions.
#' @param neighbor.degree.mode The type of degree to average in directed graphs.
#' `out` averages out-degrees, `in` averages in-degrees and `all`
#' ignores edge directions for the degree calculation.
#' @param weights Weight vector. If the graph has a `weight` edge
#' attribute, then this is used by default. If this argument is given, then
#' vertex strength (see [strength()]) is used instead of vertex
#' degree. But note that `knnk` is still given in the function of the
#' normal vertex degree.
#' Weights are are used to calculate a weighted degree (also called
#' [strength()]) instead of the degree.
#' @return A list with two members:
#' \describe{
#' \item{knn}{
#' A numeric vector giving the average nearest neighbor degree for all vertices in `vids`.
#' }
#' \item{knnk}{
#' A numeric vector, its length is the maximum (total) vertex degree in the graph.
#' The first element is the average nearest neighbor degree of vertices with degree one, etc.
#' }
#' }
#' @author Gabor Csardi \email{csardi.gabor@@gmail.com}
#' @references Alain Barrat, Marc Barthelemy, Romualdo Pastor-Satorras,
#' Alessandro Vespignani: The architecture of complex weighted networks, Proc.
#' Natl. Acad. Sci. USA 101, 3747 (2004)
#' @keywords graphs
#' @examples
#'
#' # Some trivial ones
#' g <- make_ring(10)
#' knn(g)
#' g2 <- make_star(10)
#' knn(g2)
#'
#' # A scale-free one, try to plot 'knnk'
#' g3 <- sample_pa(1000, m = 5)
#' knn(g3)
#'
#' # A random graph
#' g4 <- sample_gnp(1000, p = 5 / 1000)
#' knn(g4)
#'
#' # A weighted graph
#' g5 <- make_star(10)
#' E(g5)$weight <- seq(ecount(g5))
#' knn(g5)
#' @family structural.properties
#' @export
#' @cdocs igraph_avg_nearest_neighbor_degree
knn <- avg_nearest_neighbor_degree_impl
|