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
|
2006-11-14 Douglas Bates <bates@stat.wisc.edu>
* R/carryOver.R (fn): Allow factors on the LHS of carry.
* src/lmer.c: Reset the status appropriately.
* src/lme4_utils: Reformat source code.
2006-11-13 Martin Maechler <maechler@stat.math.ethz.ch>
* DESCRIPTION (Version, Date): 0.9975-9
* R/lmer.R (simulate): better test for "glmer"
* man/lmer-class.Rd: add simulate() example
2006-10-19 Douglas Bates <bates@stat.wisc.edu>
* data/cbpp.rda, man/cbpp.Rd: Added Contagious Bovine
Pleuropneumonia data contributed by Renaud Lancelot.
* src: Martin fixed more C99 usages.
* R/lmer.R (lmerFactorList): Throw an error if there are no random
effects terms in the model formula. (Also added a test of this in
tests/lmer.R)
2006-10-18 Douglas Bates <bates@stat.wisc.edu>
* R/lmer.R (mkFltype): typo
* DESCRIPTION (Version): Version 0.9975-7
* R/lmer.R (lmer): Remove wtssqr. Use weights correctly in the
calls to dev.resids (problem reported by Renaud Lancelot).
(mlirt): Change na.ignore to na.pass.
2006-10-16 Douglas Bates <bates@stat.wisc.edu>
* DESCRIPTION (Version): New version
* R/lmer.R (resid): Methods for resid and residuals generics
should distinguish between glmer and lmer classes.
2006-10-15 Douglas Bates <bates@stat.wisc.edu>
* src/lmer.c (internal_mer_update_ZXy): double transpose to sort
columns in ZtZ.
2006-10-13 Douglas Bates <bates@stat.wisc.edu>
* src/glmer.c (glmer_linkinv): Repair code for probit link here
and in a couple of other places.
2006-10-12 Douglas Bates <bates@stat.wisc.edu>
* src/glmer.c: pass and store family-link type allowing internal
evaluation of link, linkinv, etc. for common families.
* src/lmer.[ch],Wishart.[ch],lme4_utils.[ch]: Move utility
functions from lmer.[ch] to make code structure cleaner.
2006-10-10 Douglas Bates <bates@stat.wisc.edu>
* DESCRIPTION: Release 0.9975-3
* src/lmer.c (Zt_carryOver): correct the calculation of nnz.
2006-09-27 Douglas Bates <bates@R-project.org>
* R/lmer.R (lmer): Moved argument checking and construction of
model matrices, etc. to auxillary functions for use with functions
to fit more general models. Changed default method for GLMMs to
Laplace and default for usePQL to FALSE.
2006-09-22 Douglas Bates <bates@stat.wisc.edu>
* src/lmer.c (mer_create and other functions and files): Change
the status vector to an integer vector and just record the stage
as 0 to 4. Also record REML as an integer and glmm method as an
integer instead of strings.
2006-09-22 Douglas Bates <bates@stat.wisc.edu>
* R/AllClass.R (and many other files): delete the useScale slot in
an mer object and incorporate the scale in the devComp slot. A
negative value indicates a fixed scale.
2006-09-21 Douglas Bates <bates@stat.wisc.edu>
* R/AllClass.R: remove family and call slots from the mer object.
Adjust mer_create (src/lmer.c) and associated files accordingly.
2006-09-11 Douglas Bates <bates@R-project.org>
* src/lme4_utils.[ch]: Move the alloc_d**Matrix functions from the
Matrix package here.
2006-09-09 Douglas Bates <bates@R-project.org>
* R/lmer.R (expandSlash): Fix expansion of RHS when no fixed
effects terms are specified.
2006-09-08 Douglas Bates <bates@R-project.org>
* DESCRIPTION (Imports): Remove imports of utils and latticeExtra
2006-09-07 Martin Maechler <maechler@stat.math.ethz.ch>
* R/lmer.R (printMer): S4 method for print() needed
* NAMESPACE: and exported
2006-09-06 Douglas Bates <bates@R-project.org>
* src/cholmod.[ch]: Updates for CHOLMOD ver 1.2 installed in the
Matrix package
2006-09-04 Douglas Bates <bates@R-project.org>
* (many files): Move lmer files back to lme4.
2005-07-26 Douglas Bates <bates@R-project.org>
* R/AllGeneric.R: Remove the getCovariate, etc. generics and methods
2005-07-13 Douglas Bates <bates@R-project.org>
* R/lmList.R: lmList now uses the standard non-standard evaluation
scheme for the model frame.
2005-05-19 Douglas Bates <bates@R-project.org>
* R/lmer.R (fn): Restored the ML in name MLdeviance from summary.
2005-04-18 Douglas Bates <bates@R-project.org>
* R/lmer.R: Choose method values appropriately for lmer with or
without a family argument.
* DESCRIPTION: change dependence to Matrix(>= 0.95-6)
* R/lmList.R: Added argument pool to confint method for lmList and
order to plot method for confint.lmList
2005-04-15 Douglas Bates <bates@R-project.org>
* DESCRIPTION: Change dependence to R (>= 2.1.0) and remove the
contr.SAS definition and documentation.
2005-04-12 Douglas Bates <bates@R-project.org>
* R/lmer.R: Fixed problem with assignment of frame in lmer method
with nonmissing family argument.
2005-04-06 Douglas Bates <bates@R-project.org>
* R/lmer.R: Fix with method to accomodate for nontrivial na.action
* R/lmList.R: Repair the plot method for the lmList.confint class
2005-04-05 Douglas Bates <bates@R-project.org>
* R/lmer.R: Update of the "with" method.
* : Removed humongous PDF file accidently included in tarball.
Created release 0.95-3.
2005-02-27 Douglas Bates <bates@R-project.org>
* R/lme.R: Removed the stubs of the plot methods.
* NAMESPACE: Remove imports from the Matrix package as it is
listed in the Depends.
2005-02-24 Douglas Bates <bates@R-project.org>
* R/lmer.R (fn): Added an anova method for lmer objects that
provides F tests based on the terms object.
* data/ and man/: Moved all data sets from "Mixed-Effects Models
in S and S-PLUS" to the MEMSS package and all other test data sets
to the mlmRev package.
2005-01-24 Douglas Bates <bates@R-project.org>
* man/{guPrenat.Rd,guImmun.Rd,s3bbx.Rd,s3bby.Rd}: Add
\encoding{latin1} per Kurt's request.
2005-01-23 Douglas Bates <bates@R-project.org>
* R/lmer.R (fn): In the gradient function passed to optim, check
if the parameters are equal to the current values before
installing them. This could save an unnecessary decomposition.
2005-01-22 Douglas Bates <bates@R-project.org>
* R/lmer.R (lmer): Changes in formulas code to allow explicit
interactions in the grouping factors and formula without a fixed
term.
2005-01-03 Douglas Bates <bates@R-project.org>
* R/lmer.R: Switch from lmeRep to lmer representation
2004-12-16 Douglas Bates <bates@R-project.org>
* R/lme.R (make.mf.call): Omit control values that are no longer used.
2004-12-13 Douglas Bates <bates@R-project.org>
* R/lme.R (lmeControl): Change msVerbose to an integer value.
* R/ssclme.R: Change parameterization for optimization to
constrained version that approaches the boundary safely.
* tests/egsingle.R: Added regression test for multiple grouping
factors with multivariate random effects.
2004-10-04 Douglas Bates <bates@R-project.org>
* R/lme.R: Corrected number of arguments to lmeRep_sigma
2004-10-02 Douglas Bates <bates@R-project.org>
* R/lme.R Re-order random when facs is reordered (Closes #10)
Also add as.factor in creation of facs. Previously using a
grouping factor that was not a factor produced an obscure error
message.
2004-09-27 Douglas Bates <bates@R-project.org>
* man/lme-class.Rd: Added documentation for methods with lmeRep in
the signature. Will need to remove all methods for ssclme objects
when lmeRep can be used for general models.
2004-06-11 Douglas Bates <bates@bates2_home>
* inst/doc/MlmSoftRev.Rnw: Add new vignette
* R/GLMM.R: protect verbose PQL output.
2004-06-08 Douglas Bates <bates@stat.wisc.edu>
* R/lme.R (lmeControl) R/GLMM.R: Change name to PQLmaxIt and
change defaults for verbosity options to getOption("verbose")
2004-04-18 Douglas Bates <bates@stat.wisc.edu>
* R/ssclme.R: Fix coef<- so it really does use the unconstrained
parameters.
2004-04-05 Douglas Bates <bates@stat.wisc.edu>
* NAMESPACE: Export the vcov methods.
2004-03-28 Douglas Bates <bates@bates2_home>
* R/lme.R: added a fitted method for lme. Added dimnames and
names to the value of the fixef and ranef methods for ssclme.
* R/AllClass.R (lme): Added a fitted slot.
* R/{lme.R,sparseGLMM.R}: Remove redundant call to ssclme_factor
before ssclme_EMsteps
2004-03-18 Douglas Bates <bates@stat.wisc.edu>
* R/{pdMat.R,pdIdent.R,pdLogChol.R,pdMatrixLog.R,pdNatural.R},
src/{pdMat.c,pdIdent.c,pdLogChol.c,pdNatural.c},
tests/{pdCompSymm.R,pdDiag.R,pdIdent.R,pdLogChol.R,pdNatural.R},
man/{pdMat-class.Rd,pdmatrix-class.Rd,corrmatrix-class.Rd,
pdDiag-class.Rd,pdIdent-class.Rd,pdNatural-class.Rd,
pdLogChol-class.Rd,coefGets.Rd,pdCompSymm-class.Rd,
pdfactor-class.Rd,pdFactor.Rd,pdMatrix.Rd,
pdBlocked-class.Rd},AllClass.R,AllGeneric.R:
Moved the pdMat classes to the Matrix package. Added a dependency
on Matrix(>= 0.8-1)
2004-03-11 Douglas Bates <bates@stat.wisc.edu>
* NAMESPACE: export fixef and ranef (Erik Jrgensen)
2004-01-26 Douglas Bates <bates@stat.wisc.edu>
* DESCRIPTION (Depends): Required that version 0.4-7 be used with
R<=1.8.1. Version 0.4-8 will require R>=1.9.0
2004-01-14 Douglas Bates <bates@stat.wisc.edu>
* src/glmmStruct.c (nlme_glmmLaplace_solveOnly): There should be a
fix in here because dirtyStored is set to FALSE when part of the
stored slot is dirty.
* R/glmm.R: Undo fix for standard errors. Doesn't work with
method = 'Laplace'.
2004-01-13 Douglas Bates <bates@stat.wisc.edu>
* R/glmm.R: Correct the standard errors for glmm objects
2003-10-14 Douglas Bates <bates@stat.wisc.edu>
* R/reStruct.R: Missing a PACKAGE= in a .Call
2003-09-30 Douglas Bates <bates@stat.wisc.edu>
* src/reStruct.c (nlme_getFixDF): Commented out declarations of
unused variables here and in other functions.
* src/glmmStruct.c: Commented out nlme_glmm_calculateCorrection,
which was not being used.
2003-09-25 Saikat DebRoy <saikat@stat.wisc.edu>
* man/LMEgradient.Rd: Add LMEhessian documentation.
* INDEX: Update INDEX
* R/pdDiag.R, R/pdLogChol.R, src/Makevars, src/pdLogChol.c, src/reStruct.c:
Changes to make LMEhessian work for for one level models using pdDiag and method="ML"
2003-09-20 Saikat DebRoy <saikat@stat.wisc.edu>
* man/lmeLevel-class.Rd, man/reStruct-class.Rd, man/reStruct.Rd:
Add documentation for analytic gradient
* man/lmeControl.Rd: Add entry for analyticHessian argument.
* DESCRIPTION: Update the date.
* DESCRIPTION: Bump version.
* ChangeLog: Update ChangeLog.
* src/reStruct.c:
Add a new function nlme_hessian_level that calculates the hessianArray
slot for a particular level.
Modify nlme_commonDecompose suitably to call nlme_hessian_level when
analyticGradient is TRUE. If the method is ML, do an extra step of
REML calculation for use in nlme_hessian_level.
* R/pdDiag.R: Add an LMEhessian method for pdDiag.
* R/reStruct.R: Add support for analytic hessian.
* R/reLevel.R: Add an LMEhessian method.
* R/lme.R: Add support for analyticHessian.
* R/AllGeneric.R:
Add LMEhessian generic. Add new argument analyticHessian to the
reStruct generic.
* R/AllClass.R:
Add a hessianArray slot to lmeLevel and an analyticHessian slot to
reStruct.
2003-09-01 Douglas Bates <bates@stat.wisc.edu>
* src/reStruct.c (nlme_reStructEMsteps): Correction to calculation
of denominator df for a model with an intercept.
* DESCRIPTION (Date): Version 0.3-7
* R/reStruct.R: Use printCoefmat instead of print.coefmat
2003-08-27 Douglas Bates <bates@stat.wisc.edu>
* R/AAA.R: require methods package
2003-08-12 Douglas Bates <bates@stat.wisc.edu>
* DESCRIPTION: Version 0.3-5
* R/glmm.R, R/lme.R, R/reStruct.R: Add PACKAGE on all .Call
2003-08-11 Douglas Bates <bates@stat.wisc.edu>
* man/corMatrix.Rd: Add alias for method.
* man/guImmun.Rd: docs for rural were missing
* DESCRIPTION: Version 0.3-4
* man/pdCompSymm-class.Rd, man/pdDiag-class.Rd,
man/pdIdent-class.Rd, man/pdLogChol-class.Rd, man/pdMat-class.Rd,
man/pdNatural-class.Rd, man/pdgradient.Rd, man/reStruct-class.Rd,
man/reStruct.Rd, man/summary.reStruct-class.Rd, man/glmm-class.Rd,
man/glmmStruct.Rd, man/groupedData-class.Rd, man/lmList-class.Rd,
man/lmList.Rd, man/lme-class.Rd, man/lme.Rd,
man/lmeLevel-class.Rd, man/logDet.Rd, man/logLik-methods.Rd,
man/nlme-internal.Rd, man/nlmeInternal-class.Rd, man/GLMM.Rd,
man/LMEgradient.Rd, man/LMEoptimizeGets.Rd, man/VarCorr-class.Rd,
man/formulas.Rd: aliases for methods
2003-07-21 Douglas Bates <bates@stat.wisc.edu>
* R/glmm.R, R/reStruct.R: Complete the argument name change
* DESCRIPTION: 0.3-3
* R/AllGeneric.R, R/glmm.R, R/reStruct.R:
consistent name for first argument of fixef and fixef<-
2003-07-21 Douglas Bates <bates@stat.wisc.edu>
* DESCRIPTION (Version): 0.3-3
* R/AllGeneric.R, R/glmm.R, R/reStruct.R:
consistent name for first argument of fixef and fixef<-
2003-07-20 Douglas Bates <bates@stat.wisc.edu>
* man/GLMM.Rd:
Simplify example with Laplace. The ill-conditioned example takes too
long.
* man/fixed.effects.Rd: Added documentation for fixef<-.
2003-07-20 Douglas Bates <bates@stat.wisc.edu>
* man/GLMM.Rd:
Simplify example with Laplace. The ill-conditioned example takes too
long.
* man/fixed.effects.Rd: Added documentation for fixef<-.
2003-07-20 Douglas Bates <bates@stat.wisc.edu>
* man/fixed.effects.Rd: Added documentation for fixef<-.
2003-07-18 Douglas Bates <bates@stat.wisc.edu>
* DESCRIPTION, R/AllGeneric.R, R/glmm.R, man/GLMM.Rd: release 0.3-2
2003-07-18 Saikat DebRoy <saikat@stat.wisc.edu>
* R/AllClass.R, R/reStruct.R:
Remove the groups slot from the reStruct class. We do not
currently use it and the information is also in the groups
slot of relevel class.
2003-07-17 bates <bates@stat.wisc.edu>
* ChangeLog, DESCRIPTION: Release 0.3-1
* man/VarCorr.Rd: Remove argument documentation from generic
2003-07-17 Saikat DebRoy <saikat@stat.wisc.edu>
* src/glmmStruct.c:
Fix some problems in calculating second order Laplace
approximation to the GLMM log-likelihood
* src/reStruct.c, src/reStruct.h (nlme_reStruct_fitted, nlme_reStruct_fitted_internal):
Allow specification of levels for which the fitted value is calculated
* R/reStruct.R: Add a fixef<- method for reStruct
* R/glmm.R: Add Laplace optimziation for GLMM
* R/glmmStruct.R: Handle complicated response correctly
* R/AllGeneric.R: Add a fixef<- generic
2003-07-15 Douglas Bates <bates@stat.wisc.edu>
* ChangeLog, DESCRIPTION, src/reStruct.c:
Correct dynamic array allocation in getFixDF; release new version
* src/reStruct.c (nlme_getFixDF):
Allocate dynamic storage using Calloc and Free to
conform to C90 specification.
2003-07-15 Douglas Bates <bates@stat.wisc.edu>
* src/reStruct.c (nlme_getFixDF): Allocate dynamic storage using
Calloc and Free to conform to C90 specification.
2003-06-30 Douglas Bates <bates@stat.wisc.edu>
* DESCRIPTION (Version): 0.2-2
* R/reStruct.R, src/reStruct.c: Move most of getFixDF method for
reStruct to C code.
2003-06-24 Saikat DebRoy <saikat@stat.wisc.edu>
* man/lme.Rd: Add documentation for model and x arguments.
2003-06-24 Douglas Bates <bates@stat.wisc.edu>
* DESCRIPTION: 0.2-1 release
2003-06-24 Saikat DebRoy <saikat@stat.wisc.edu>
* src/glmmStruct.c:
Add support for 2nd order log-likelihood calculation
2003-06-24 Douglas Bates <bates@stat.wisc.edu>
* R/zzz.R: Check if nlme is attached.
2003-06-24 Saikat DebRoy <saikat@stat.wisc.edu>
* src/reStruct.c:
Make sure decomposed slot is not zero sized when doing predecomposition. Fix nlme_inner_perc_table
* src/reStruct.h: Add nlme_decomposeChunk to the header file.
* R/reStruct.R: Fix getFixDF. Set the assign.X slot.
* R/lme.R:
Make the final lme object creation a little more efficient. Use model and x arguments. Make nlm the default optimizer
* R/glmmStruct.R: Add some auxiliary functions used by the C code
* R/glmm.R: Try to save some copying by using nlme_replaceSlot
* R/AllGeneric.R: Add model and x as arguments to lme
* R/AllClass.R:
Add a assign.X slot to reStruct (contains the assign attribute for fixed effects model.matrix.
Add a fitted slot to lme.
2003-06-23 Douglas Bates <bates@stat.wisc.edu>
* src/utilities.h: declare nlme_check_Lapack_error
2003-06-17 Saikat DebRoy <saikat@stat.wisc.edu>
* R/lme.R, R/pdCompSymm.R, R/reStruct.R:
Use better stepmax value for nlm.
* R/reStruct.R: Fix problem when using numeric derivative.
* src/pdLogChol.c: Fix problems for pdLogChol
* src/pdDiag.c: Fix problems for pdDiag
2003-06-14 Douglas Bates <bates@stat.wisc.edu>
* DESCRIPTION: New version to ship to Uwe Ligges
2003-06-12 Douglas Bates <bates@stat.wisc.edu>
* man/guImmun.Rd, tests/guImmun.R, INDEX, data/guImmun.rda, man/GLMM.Rd, man/glmm-class.Rd:
New form of guImmun data
2003-06-12 Saikat DebRoy <saikat@stat.wisc.edu>
* R/pdIdent.R: Make sure the names propagate correctly for pdIdent.
* R/VarCorr.R, R/reStruct.R:
Ommit printing the correlation part when noCorrelation=TRUE for all levels.
* R/reStruct.R, R/VarCorr.R:
When noCorrelation=TRUE in summary.pdMat, do not print the correlations.
2003-06-12 Saikat DebRoy <saikat@stat.wisc.edu>
* R/glmm.R, R/lme.R: Fix typo.
* INDEX: New version of INDEX
* man/lmList-class.Rd, man/lmList.Rd, man/lme-class.Rd, man/nlmeInternal-class.Rd, man/VarCorr-class.Rd, man/VarCorr.Rd, man/family-class.Rd, man/glmm-class.Rd, man/glmmStruct.Rd, man/isInitialized.Rd:
Add new documentation
2003-06-11 Saikat DebRoy <saikat@stat.wisc.edu>
* R/AllGeneric.R: Remove the response generic.
* R/AllClass.R, R/AllGeneric.R, R/VarCorr.R:
Add VarCorr class, generic and methods
* R/pdNatural.R, src/pdNatural.c: Fix problems with pdNatural.
* R/glmmStruct.R: Use getResponse instead of response.
* R/glmm.R, R/lme.R:
Do not show significance star inside show.lme or show.glmm.
2003-06-10 Saikat DebRoy <saikat@stat.wisc.edu>
* R/reStruct.R, R/lme.R: Remove extra right paren.
* R/glmm.R:
Change the display of family information in show.summary.glmm.
* man/pdgradient.Rd, man/pdmatrix-class.Rd, man/solve-methods.Rd:
Remove references to pdScalar
* R/reStruct.R:
Remove the response and groups methods. Add getResponse and getGroups methods.
* R/pdDiag.R: Fix the check for length of nam in setAs
* R/lme.R: Add coef and getGroups methods for the lme class
* R/AllGeneric.R: Remove the groups generic
* R/reStruct.R (show.summary.reStruct):
Print the fixed effects formula.
* R/glmmStruct.R:
Only add second derivative information to family when using Laplace.
Accept quasibinomial and quasipoisson families with second derivatives.
* R/glmm.R (summary.glmm): Make useScale FALSE when appropriate.
(show.summary.glmm): Print family and link information.
* R/AllClass.R:
Add a fixed slot to the reStruct class and method and family slots to the
glmm class
* src/reStruct.h: Add declaration for nlme_commonDecompose.
* R/glmmStruct.R (glmmStruct): Add the method argument.
* R/glmm.R:
Add a new argument nEM.IRLS (the number of EM iterations in IRLS
steps). Add summary method for glmm class and show methods for glmm
and summary.glmm class.
* R/AllGeneric.R:
Change the signature of the glmmStruct generic to have a method
argument.
* R/AllClass.R:
Add a summary.glmm class. Add a method slot to the glmm class.
* R/reStruct.R (LMEoptimize):
Return without doing anything if number of optimizer
iterations is less than 1.
2003-06-06 Douglas Bates <bates@stat.wisc.edu>
* man/pdSymm-class.Rd, man/coefGets.Rd, man/isInitialized.Rd, man/lmeControl.Rd, man/logDet.Rd, man/pdLogChol-class.Rd, man/pdMat-class.Rd, man/pdNatural-class.Rd, R/glmm.R, man/EMupdateGets.Rd, man/GLMM.Rd, man/LMEgradient.Rd, INDEX, R/AllGeneric.R:
release 0.1-19
2003-06-05 Douglas Bates <bates@stat.wisc.edu>
* man/GLMM.Rd: Rearrange argument sequence.
* ChangeLog, DESCRIPTION: Release 0.1-19
* R/glmmStruct.R: Explicit coercion for glmFit$y
* R/lme.R, R/reStruct.R: Avoid copies of large object
* R/pdMat.R, R/pdCompSymm.R, R/pdLogChol.R, R/pdNatural.R:
summary method for pdMat class only
2003-06-05 Douglas Bates <bates@stat.wisc.edu>
* R/lme.R: Avoid copying the reStruct object when assigning the
dontCopy slot.
* R/pdMat.R: Remove defaults in summary method arguments.
Build switch on noCorrelation into summary method for pdMat.
Remove summary method for other classes that inherit from pdMat.
2003-06-03 Douglas Bates <bates@stat.wisc.edu>
* DESCRIPTION (Version): Versions 0.1-17 and 0.1-18 for debugging
the methods package.
* R/AllClass.R: remove the pdScalar class and definitions
2003-05-23 Douglas Bates <bates@stat.wisc.edu>
* src/utilities.h: Include the R_ext/Lapack.h file here; remove
lapack.h and all references to it.
* src/utilities.c (nlme_replaceSlot): Added C routine to replace the
value of a slot in place.
2003-05-21 Saikat DebRoy <saikat@stat.wisc.edu>
* R/reStruct.R (reStruct):
The reStruct class no longer has a frame slot.
(response): Add a new extractor for the response.
(fitted): Fitted no longer returns the fitted value in original order.
* R/lme.R (lme):
Rewritten to use the new definition of the lme class with
reStruct as a slot.
Add a coercion from lme to reStruct class (which just extracts the
reStruct slot).
(residuals): Rewrite to use the na.action slot if it is non NULL.
(fitted): New method using the na.action slot if it is non NULL.
(logLik): New method that calls the logLik method for the reStruct
slot.
* R/glmmStruct.R (glmmStruct):
Now returns an object of class glmm which contains an
reStruct class.
* R/glmm.R (GLMM):
Add a new argument called method with default value of
"PQL". Rewrite the function to use this argument and also to reflect
the fact that glmmStruct() now returns an object of class glmm with an
reStruct slot.
* R/AllGeneric.R (response): New generic added.
* R/AllClass.R:
Move the frame slot from the reStruct class to the lme class.
Add an na.action slot to the lme class. It contains the na.action
attribute of the model.frame and is used along with napredict in
residuals and fitted methods.
Rename the glmmStruct class to glmm. It now inherits from the lme
class.
2003-05-21 Douglas Bates <bates@stat.wisc.edu>
* man/lmeScale.Rd: Now inlined in lmeControl
* data/Machines.rda, data/MathAchSchool.rda, data/MathAchieve.rda, data/Oxboys.rda, man/bdf.Rd, data/bdf.rda:
Already available in nlme package
* man/lme.Rd, R/AllClass.R, R/reStruct.R:
Summary and show methods for lme and reStruct
* R/lme.R: Cleaned up the summary and show methods.
2003-05-21 Douglas Bates <bates@stat.wisc.edu>
* R/lme.R: Inlined the lmeScale function. Modified the show
method for the summary.lme and lme classes.
2003-05-21 Saikat DebRoy <saikat@stat.wisc.edu>
* R/pdNatural.R: Initialization should the same thing as in pdLogChol.
2003-05-19 Douglas Bates <bates@stat.wisc.edu>
* DESCRIPTION, INDEX, data/guImmun.rda, man/EMupdateGets.Rd, man/glmmPQL.Rd, man/lmeScale.Rd, man/predecompose.Rd, man/reStruct-class.Rd, man/reStruct.Rd, tests/Bryk.R:
release 0.1-15
* R/AllGeneric.R: getFixDF made generic
* R/pdDiag.R, R/pdIdent.R, R/pdLogChol.R, R/pdMat.R: Initialization
* R/glmm.R, man/GLMM.Rd: rearranging arguments
* R/AllClass.R, R/lmeFitted.R, R/lme.R, R/reStruct.R:
New summary approach
* tests/glmmPQL.R, tests/guImmun.R, tests/guPrenat.R, tests/Bryk.R, tests/GLMM.R, tests/bdf.R:
*** empty log message ***
2003-05-19 Saikat DebRoy <saikat@stat.wisc.edu>
* src/reStruct.c: Use the dontCopy slot
* src/glmmStruct.c: Bug fix
* R/lmeFitted.R: Fix summary methods
2003-05-17 Douglas Bates <bates@stat.wisc.edu>
* tests/guPrenat.R, tests/guImmun.R: Adding tests
2003-05-16 Saikat DebRoy <saikat@stat.wisc.edu>
* R/lme.R:
We were not adding the random effects terms to the formula for model.frame.
* R/pdNatural.R, R/pdLogChol.R: Fix check for slot Ncol.
2003-05-14 Saikat DebRoy <saikat@stat.wisc.edu>
* R/glmm.R, R/glmmStruct.R, R/lme.R, src/STYLE:
Remove code for 2nd order Laplace approximation for GLMMs from R functions
2003-05-14 Saikat DebRoy <saikat@stat.wisc.edu>
* Put a tag (laplace2-irls) for code with 2nd order Laplace
computaion using IRLS steps for betas.
2003-04-16 Douglas Bates <bates@stat.wisc.edu>
* tests/MathAchieve.R: Test is redundant if Bryk test is used
* man/lmeControl.Rd: analyticGradient argument
2003-04-15 Douglas Bates <bates@stat.wisc.edu>
* R/glmmStruct.R: Added mu2.eta2 for Poisson family with log link
2003-04-09 Saikat DebRoy <saikat@stat.wisc.edu>
* src/reStruct.c, R/reStruct.R, R/lmeFitted.R, R/glmm.R:
Some bug fixes and enhancements
* R/lmeFitted.R: There was a silly typo in the summary method for lme.
2003-04-07 Saikat DebRoy <saikat@stat.wisc.edu>
* R/lmeFitted.R:
Add summary method (and supporting functions/methods) for lme objects
* tests/Bryk.R, src/reStruct.h, src/reStruct.c, src/glmmStruct.c, R/reStruct.R, R/pdMat.R, R/pdCompSymm.R, R/lme.R, R/glmmStruct.R, R/glmm.R, R/AllGeneric.R, R/AllClass.R, ChangeLog:
Large changes: check for NAMED tag whenever an reStruct gets modified.
Also, modifications for correctly handling GLMMLaplace.
2003-03-26 Saikat DebRoy <saikat@stat.wisc.edu>
* R/glmmStruct.R: Use nlm by default for glmmLaplace.
2003-03-26 Douglas Bates <bates@stat.wisc.edu>
* INDEX, data/00Index: Version 0.1-13
* R/pdMat.R, R/reStruct.R: Changes from print method to show method
* R/lme.R: Added lme class
* man/logDet.Rd, man/pdMat-class.Rd, man/pdSymm-class.Rd, man/pdgradient.Rd, man/pdmatrix-class.Rd, man/solve-methods.Rd, man/EMupdateGets.Rd, man/LMEgradient.Rd, man/coefGets.Rd, man/isInitialized.Rd:
Removed references to pdMatrixLog class
* man/Bryk.Rd: Added documentation for Bryk
2003-03-26 Saikat DebRoy <saikat@stat.wisc.edu>
* R/AllClass.R:
Remove duplicate slot niterIRLS from definition of glmmStruct.
* R/AllClass.R: Fix some conflicts with local modifications here.
2003-03-25 Douglas Bates <bates@stat.wisc.edu>
* R/AllClass.R:
Removed EMiter slot from the reStruct class as it was not being used
* man/pdMatrixLog-class.Rd: Move pdMatrixLog class to backup file
* man/reStruct.Rd: incorporate the weights argument
* R/pdMatrixLog.R: Move pdMatrixLog class to backup file
* R/AllClass.R: Explicitly use contains in class definitions
* install.R: methods package now attached by default
* DESCRIPTION: New version
* R/pdMatrixLog.bak:
Moved pdMatrixLog class to a backup file. We may want to remove this
class. There is no easy way to define the gradient for the MatrixLog
parameterization of positive-definite symmetric matrices.
* man/pdIdent-class.Rd:
Changed pdDiag to pdIdent in places that had been copied from
pdDiag-class.Rd
* man/pdIdent-class.Rd: Filled in the skelton man page.
2003-03-18 Douglas Bates <bates@stat.wisc.edu>
* src/reStruct.c:
Correction of commonDecompose for REML. Value of columns slot was
being used instead of its length.
2003-03-14 Douglas Bates <bates@stat.wisc.edu>
* src/reStruct.c: Calculation of constant
* R/reStruct.R: Clean up EM iteration output
2003-03-13 Douglas Bates <bates@stat.wisc.edu>
* tests/bdf.R: Simplify call
* R/reLevel.R: Introduced factor in calculation of initial value
2003-03-11 Saikat DebRoy <saikat@stat.wisc.edu>
* src/reStruct.h, src/reStruct.c, src/glmmStruct.c, R/glmmStruct.R, R/AllGeneric.R, R/AllClass.R:
Bug fixes. Do 2nd order laplace computations with numeric gradients (for now).
2003-03-10 Douglas Bates <bates@stat.wisc.edu>
* tests/Bryk.R, data/Bryk.rda: Pre DSC-2003
* DESCRIPTION: New version before DSC-2003
2003-03-03 Saikat DebRoy <saikat@stat.wisc.edu>
* src/reStruct.h, src/reStruct.c, src/glmmStruct.c, R/glmmStruct.R:
Do the IRLS steps in a C function.
* src/reStruct.h, src/reStruct.c, src/glmmStruct.c, R/reStruct.R, R/reLevel.R, R/glmmStruct.R, R/glmm.R, R/AllGeneric.R, R/AllClass.R:
Fix bugs
2003-02-27 Douglas Bates <bates@stat.wisc.edu>
* DESCRIPTION: New version
* tests/MathAchieve.R: Use simpler form of random specification
2003-02-27 Saikat DebRoy <saikat@stat.wisc.edu>
* R/glmmStruct.R, R/glmm.R:
Add a constructor function for glmmStruct class.
* R/AllClass.R: Add two more slots to glmmStruct
2003-02-26 Saikat DebRoy <saikat@stat.wisc.edu>
* src/reStruct.h, src/reStruct.c, src/glmmStruct.c:
Add reStruct.h. Also make some bug fixes.
* R/reStruct.R, R/glmmStruct.R:
Some bug fixes. Also, add PACKAGE="lme4" to .Call calls.
* src/reStruct.c: Add nlme_setParameters
* src/glmmStruct.c: Add nlme_glmm_commonDecompose
* R/glmmStruct.R: Some fixes
* src/glmmStruct.c, R/glmmStruct.R:
Add new files for handling glmmStruct
* src/reStruct.c: Code restructure to handle GLMM 2-nd order Laplace
* R/glmm.R: use glmmStruct as the class of result from glmmPQL
* R/AllClass.R: Add new class glmmStruct
2003-02-13 Saikat DebRoy <saikat@stat.wisc.edu>
* R/reStruct.R: Do not return hessian from either optim or nlm calls.
2003-02-04 Douglas Bates <bates@stat.wisc.edu>
* src/lapack.h, DESCRIPTION, cleanup: cleanup no longer necessary
2003-01-30 Douglas Bates <bates@stat.wisc.edu>
* src/reStruct.c: Fixed up logic in nlme_logPenalty.
* cleanup: No longer want to remove src/Makevars
* configure.ac, configure.win, data/00Index, configure, aclocal.m4, src/Makevars, src/Makevars.in, src/Makevars.win:
Switching to $(LAPACK_LIB) for R-1.7.0
2003-01-29 Douglas Bates <bates@stat.wisc.edu>
* DESCRIPTION (Date): Create a new version
* cleanup: Changed to using the $(LAPACK_LIB) macro from R-1.7.0.
Removed the files to generate the configure script.
2003-01-12 Saikat DebRoy <saikat@stat.wisc.edu>
* data/00Index, INDEX: Commit result from R CMD build --force
* ChangeLog: Cleanup ChangeLog file.
2003-01-02 Douglas Bates <bates@stat.wisc.edu>
* tests/glmmPQL.R: added the standard deviations and their
logarithms to the results.
* data/guImmun.rda, data/guPrenat.rda: Added the Immunization and
Prenatal care data sets from Rodriguez and Goldman (2001).
2002-12-29 Douglas Bates <bates@stat.wisc.edu>
* INDEX: Automatic INDEX update
* DESCRIPTION: lme4 now requires only R-1.6.2
* src/utilities.h and many otherss:
Move dtrtri and dtrmm declarations to .h file. Change all
check_Lapack_error calls to nlme_check_Lapack_error. Remove
methods.h and all references to it.
* man/BIC.Rd, man/QR-class.Rd, man/summary.reStruct-class.Rd:
More documentation modifications
* R/reStruct.R: Create a logLik object from the logLik method
* R/AllGeneric.R: Add the BIC generic
* R/AllClass.R, src/qr.h, src/qr.c: Remove the QR class
2002-12-29 Douglas Bates <bates@stat.wisc.edu>
* man/BIC.Rd, man/QR-class.Rd, man/summary.reStruct-class.Rd:
More documentation modifications
* R/reStruct.R: Create a logLik object in the logLik method
* R/AllGeneric.R: Add the BIC generic
* R/AllClass.R: Remove the QR class
* data/s3bbx.rda, data/s3bby.rda: compress these large data objects
2002-12-24 Douglas Bates <bates@stat.wisc.edu>
* tests/glmmPQL.R: Change test to provide timings.
* tests/pdNatural.R: Updates of pdNatural class
* INDEX: automatic update by R CMD build
* R/pdNatural.R, src/pdNatural.c: Updates of pdNatural class
2002-12-18 Douglas Bates <bates@stat.wisc.edu>
* DESCRIPTION: Increment the version, change the description and title
2002-12-18 Saikat DebRoy <saikat@stat.wisc.edu>
* src/reStruct.c:
Change nlme_logLikelihhod and nlme_commonDecompose so that they accept an
optional parameter vector. Also use the dirtyStored flag to avoid doing
redundant computations.
* R/reStruct.R:
Modifications for adding the dirtyStored slot of reStruct objects.
Set parameter values where possible by calls to C functions
nlme_logLikelihood and nlme_commonDecompose. Alternative apporoach of using
coef<- calls may produce extra copies of reStruct objects.
* R/AllClass.R:
Add a new slot (dirtyStored) to the reStruct object with its default value
in the prototype being FALSE.
2002-12-05 Douglas Bates <bates@stat.wisc.edu>
* R/reStruct.R: Added a rudimentary summary method.
2002-12-03 Douglas Bates <bates@stat.wisc.edu>
* R/pdDiag.R, R/pdLogChol.R, R/pdScalar.R:
package in .Call should be PACKAGE
2002-12-01 Douglas Bates <bates@stat.wisc.edu>
* man/logLik-methods.Rd, man/matrixGets.Rd, man/pdgradient.Rd, man/pdmatrix-class.Rd, man/lmeScale.Rd:
Cleaning up manual pages
2002-11-30 Douglas Bates <bates@stat.wisc.edu>
* R/pdScalar.R: Corrected the calculation for the EM update.
2002-11-30 saikat <saikat@stat.wisc.edu>
* ChangeLog: Clean ChangeLog.
2002-11-30 Douglas Bates <bates@stat.wisc.edu>
* R/pdScalar.R: added coersion of value in EMupdate<-
* tests/glmmPQL.R: *** empty log message ***
* man/model.matrixGets.Rd, man/responseGets.Rd:
Added more documentation of generics
* man/reStruct-class.Rd: Remove redundant \alias{reStruct}
* tests/glmmPQL.R: Change number of fits to 1.
* man/pdDiag-class.Rd: Update method descriptions
* INDEX: *** empty log message ***
* man/lmeScale.Rd: Transferred from nlme package
* R/pdMat.R: Fix problem with logDet slot of pdfactor
* R/pdScalar.R: Filter all changes through coef<-
* R/pdDiag.R: Fix and error message and remove redundant checks
2002-11-30 Douglas Bates <bates@stat.wisc.edu>
* man/reStruct-class.Rd: Remove redundant \alias{reStruct}
* tests/glmmPQL.R: Change number of fits to 1.
* man/pdDiag-class.Rd: Update method descriptions
* INDEX: *** empty log message ***
* man/lmeScale.Rd: Transferred from nlme package
* R/pdMat.R: Fix problem with logDet slot of pdfactor
* R/pdScalar.R: Filter all changes through coef<-
* R/pdDiag.R: Fix an error message and remove redundant checks
2002-11-29 Douglas Bates <bates@stat.wisc.edu>
* tests/pdScalar.R: added pdScalar methods
* src/pdDiag.c, src/pdLogChol.c:
Ensure duplicate if creating new object for slot
* src/pdScalar.c: added pdScalar methods
* tests/glmmPQL.R: default number of glmmPQL tests is 5
* man/lme.Rd, man/lmeLevel.Rd, man/matrixGets.Rd, man/pdDiag-class.Rd, man/getCovariate.Rd, man/getGroups.Rd, man/getGroupsFormula.Rd, man/glmmPQL.Rd, man/groups.Rd, man/isInitialized.Rd, man/MathAchieve.Rd, man/Names.Rd, man/coefGets.Rd, man/corFactor.Rd, man/corMatrix.Rd, man/fixed.effects.Rd, man/EMstepsGets.Rd, man/EMupdateGets.Rd, man/LMEgradient.Rd, man/LMEoptimizeGets.Rd:
\docType{genericFunction} for generic/method docs
* src/pdDiag.c, R/pdDiag.R: coef<- method as .Call
* R/pdLogChol.R: Documentation clarification
2002-11-28 Douglas Bates <bates@stat.wisc.edu>
* R/reLevel.R: Use TRUE and FALSE instead of T and F.
2002-11-28 saikat <saikat@stat.wisc.edu>
* cleanup: Remove *.o and *.so files in source during cleanup.
* ChangeLog: Remove duplicate entries.
2002-11-27 Douglas Bates <bates@stat.wisc.edu>
* data/00Index: Updates for the Rodriguez/Goldman data
* ChangeLog: *** empty log message ***
* INDEX: Update from new man pages
* DESCRIPTION: Minor release increment
* data/s3bby.rda, data/s3bbx.rda:
Added Rodriquez/Goldman simulated data
* tests/glmmPQL.R:
Added glmmPQL test for Rodriquez/Goldman simulated data
* man/random.effects.Rd, man/reStruct.Rd, man/s3bbx.Rd, man/s3bby.Rd, man/glmmPQL.Rd, man/groupedData-class.Rd, man/lme.Rd, man/logLik-methods.Rd, man/nfGroupedData-class.Rd, man/nffGroupedData-class.Rd, man/nfnGroupedData-class.Rd, man/nmGroupedData-class.Rd, man/EMstepsGets.Rd, man/LMEoptimizeGets.Rd, man/QR-class.Rd, man/fixed.effects.Rd:
Updated manual pages
* R/reStruct.R: Added fixef and ranef methods.
* R/AllGeneric.R:
Added generics for fixed.effects, fixef, random.effects and ranef.
* ChangeLog: *** empty log message ***
* man/pdLogChol-class.Rd, man/pdfactor-class.Rd, man/pdmatrix-class.Rd, man/reStruct-class.Rd, man/reStruct.Rd, man/solve-methods.Rd, man/weightedGets.Rd, src/reStruct.c, INDEX, man/lmeControl.Rd, man/lmeLevel-class.Rd, man/lmeLevel.Rd, man/logDet.Rd:
Update help pages
* data/00Index, data/dallas.rda:
Store ids and Campus as factors in dallas data set
* man/reStruct-methods.Rd: Method descriptions moved to reStruct.Rd
* man/logDet-methods.Rd: Method descriptions moved to logDet.Rd
* man/weightedGets-methods.Rd:
Method descriptions moved to weigghtedGets.Rd
* man/lmeLevel-methods.Rd: Method descriptions moved to lmeLevel.Rd
2002-11-27 Saikat DebRoy <saikat@stat.wisc.edu>
* src/reStruct.c (nlme_predecompose):
Look at the useWeighted slot to decide if the
weighted or original slot should be decomposed.
* R/AllClass.R:
Add a new slot, useWeighted to reStruct class. This specifies whether
the weighted slot should be used for computations.
* R/reStruct.R:
(reStruct), (response<-), (model,matrix<-): Deal with the new
useWeighted slot of reStrict.
(weighted<-): Now value is a numeric vector of weights. Try to update
the weighted slot in place if we can. If all the weights are one, set
useWeighted to FALSE.
* R/lme.R (lmeControl):
Add new option EMverbose for a verbose mode for EM
steps.
* R/glmm.R (glmmPQL):
Raise default value of niter to 20. Also change default
value of verbose to FALSE.
Take only a single EM step (ie. control$niterEM=1) after the first
iteration. Taking too many EM steps after the first iterations seems
to be unnecessary.
Make the verbose flag also print loglikelihood value and parameter
values in the iteration step.
* src/reStruct.c (nlme_reStruct_fitted):
Do not use weighted for computing fitted values.
2002-11-26 Douglas Bates <bates@stat.wisc.edu>
* man/pdFactor.Rd, man/pdMat-class.Rd, man/pdMatrix-methods.Rd, man/pdMatrix.Rd, man/predecompose-methods.Rd, man/predecompose.Rd, man/matrixGets.Rd, man/pdFactor-methods.Rd, man/coefGets.Rd, man/corMatrix.Rd:
Cleaning man pages
2002-11-26 Saikat DebRoy <saikat@stat.wisc.edu>
* src/reStruct.c:
Use Calloc/Free instead of using allocMatrix/allocVector for all
temporary objects.
Update doxygen comments.
* src/bitfield.c (nlme_bitfield_alloc):
No need to set to zero when memory is allocated
with Calloc.
2002-11-25 Douglas Bates <bates@stat.wisc.edu>
* man/dallas.Rd, man/groups-methods.Rd, man/groups.Rd, man/isInitialized-methods.Rd, man/isInitialized.Rd, man/EMupdate.Rd, man/EMupdateGets-methods.Rd, man/EMupdateGets.Rd, man/LMEgradient-methods.Rd, man/LMEgradient.Rd, man/Names.Rd, man/coefGets-methods.Rd, man/coefGets.Rd, man/corFactor.Rd:
consolidate generic and methods documentation when there are no surprising arguments
2002-11-25 Saikat DebRoy <saikat@stat.wisc.edu>
* R/glmm.R:
First cut at a glmmPQL function mostly borrowed from MASS and adapted
to new setup. I do not think it is working correctly right now -
results with the rg3 data do not match fit obtained from the version
in MASS.
* src/reStruct.c (nlme_decomposeChunk):
Be more careful about calls to copyRows - under
certain conditions we were trying to copy more than what was actually
in the chunk.
* R/reStruct.R (reStruct): Initialize the new origOrder slot.
(coef<-): Set the names in value to NULL - otherwise names were
becoming longer and longer under certain situations.
(response<-): Correct indexing while setting the response in original
slot.
* R/AllClass.R:
Add a new slot origOrder to reStruct class. It stores the ordering
used to go from original order to the one used internally in reStruct.
2002-11-24 Saikat DebRoy <saikat@stat.wisc.edu>
* src/qr.h: Include methods.h for SEXPREC typedef
* src/methods.h: const SEXP is not meaningful - just use SEXP.
* src/lapack.h (dgemv): y should not be const.
* src/pdNatural.c, src/pdMat.c, src/pdLogChol.c, src/pdIdent.c, src/pdDiag.c:
Some code cleanup.
* src/bitfield.c:
(nlme_bitfield_alloc), (nlme_bitfield_free): Use Calloc/Free.
* src/reStruct.c: Add some documentation.
Use direct call to LAPACK QR routines. Use Calloc/Free for most
temporary memory allocation. The only big one still allocated via
allocVector is the scratch array - mostly because of the way copyRows
and zeroRows are written.
(nlme_reStruct_fitted): Add new function for finding the fitted values
for reStruct objects.
* R/reStruct.R (reStruct): The reverseOrder slot was wrong earlier.
(reStruct), (model.matrix<-): Set the weighted slot to be a zero
dimension matrix unless we really need it.
(response<-): Add new method for setting the response.
(fitted): Add new method for reStruct objects.
* R/AllGeneric.R (response<-): Added new generic.
2002-11-23 Douglas Bates <bates@stat.wisc.edu>
* data/dallas.rda: TAAS data from Dallas Indep. School District
* R/pdLogChol.R: Replaced the R code for coef<- with a .Call
* src/pdLogChol.c:
Remove pdLogChol_pdfactor and insert pdLogChol_coefGets using a static
double function ld_factor_from_par.
* src/reStruct.c (nlme_logLikelihood):
Use the factor and logLik slots of the precision matrices instead of
AS(precision, pdfactor_class). Speeds up the calculation somewhat.
* R/pdMat.R, src/pdIdent.c, src/pdLogChol.c, R/AllClass.R,
R/pdDiag.R, R/pdIdent.R, R/pdLogChol.R: Added slots to pdMat class
- removed them from inheriting classes
* tests/pdCompSymm.R, tests/pdIdent.R, tests/pdNatural.R:
Adjustments for changes in slots.
* tests/MathAchieve.R, tests/MathAchive.R: Corrected spelling of
file name.
2002-11-22 Saikat DebRoy <saikat@stat.wisc.edu>
* src/reStruct.c (nlme_factor_level):
Remove extra declaration of srcStartRow.
* src/reStruct.c (nlme_factor_level):
Fix bug when dealing with more than one levels.
Remove some commented out parts.
* R/reStruct.R (reStruct): Modify self@groups for multiple levels.
* R/reLevel.R (lmeLevel):
Fix problem with creating 1x1 matrices using diag.
2002-11-21 Douglas Bates <bates@stat.wisc.edu>
* INDEX, src/lapack.h, src/reStruct.c, DESCRIPTION:
moving declarations in reStruct.c to lapack.h; bump the version number
2002-11-20 Douglas Bates <bates@stat.wisc.edu>
* man/solve-methods.Rd, man/weightedGets-methods.Rd, man/coefGets-methods.Rd, man/groups-methods.Rd, man/isInitialized-methods.Rd, man/lmeLevel-methods.Rd, man/logDet-methods.Rd, man/logLik-methods.Rd, man/pdFactor-methods.Rd, man/pdMatrix-methods.Rd, man/predecompose-methods.Rd, man/reStruct-methods.Rd, man/EMupdateGets-methods.Rd, man/LMEgradient-methods.Rd:
Added more manual pages
* man/pdScalar-class.Rd, man/pdgradNumeric.Rd, man/pdgradient.Rd, man/reStruct-class.Rd, man/weightedGets.Rd, man/QR-class.Rd, man/corMatrix.Rd, man/lmeLevel-class.Rd, man/logDet.Rd, man/matrixGets.Rd, man/pdBlocked-class.Rd:
Cleaned up manual pages
2002-11-20 Douglas Bates <bates@stat.wisc.edu>
* man/pdgradient.Rd: Cleaned up this and several other help pages.
2002-11-20 Saikat DebRoy <saikat@stat.wisc.edu>
* src/qr.c (nlme_QR): Was unprotecting too many things.
* src/pdLogChol.c (pdLogChol_pdfactor):
Avoid making two copies of factor - SET_SLOT
duplicates it in any case.
* src/bitfield.c: Was including the main() definition by mistake.
* src/qr.c (nlme_QR):
Do not compute qr_class everytime - instead make it static
and compute in the first call. This reduces run time considerably -
MAKE_CLASS has a large overhead.
SET_SLOT() duplicates its value. So avoid making two copies of mat and
rcond as these can be large.
* src/reStruct.c:
Reuse scratch array for all chunks in a level inside nlme_predecompose
and nlme_logLikelihood.
(nlme_scratchSize): Calculate size of the scratch array.
2002-11-20 Saikat DebRoy <saikat@stat.wisc.edu>
* lme.R (lmeControl): Add another argument, optimizer, to the control
list. Value should be either "nlm" or "optim".
* reStruct.R (LMEoptimize<-):
Allow use of either nlm or optim for optimization.
2002-11-19 Saikat DebRoy <saikat@stat.wisc.edu>
* src/reStruct.c (nlme_reStructDims):
Fix bug with different lengths in chunks.
2002-11-19 Douglas Bates <bates@stat.wisc.edu>
* data/bdf.rda, man/MathAchSchool.Rd, man/MathAchieve.Rd, man/bdf.Rd, ChangeLog, DESCRIPTION, INDEX, R/lme.R, data/00Index, data/MathAchSchool.rda, data/MathAchieve.rda:
Added data sets; minor fix in reStruct
* R/reStruct.R:
Minor fix in LMEoptimize - optimization result had wrong name.
* R/lme.R (lmeScale): drop unused levels in call to model frame.
Use the integer niterEM instead of the list in the replacement
EMsteps.
2002-11-19 Saikat DebRoy <saikat@stat.wisc.edu>
* lme.R (lme):
Rename EMniter<- to EMsteps<- and replace call to optim by
LMEoptimize<-.
* reStruct.R (EMsteps<-): Renamed from EMniter<- and rewritten.
(LMEoptimize<-): New - encapsulates nonlinear optimization step.
* AllGeneric.R (EMsteps<-): Renamed from EMniter<- and rewritten.
(LMEoptimize<-): New - encapsulates nonlinear optimization step.
* reStruct.c (nlme_predecompose):
Was decomposing original - it should be weighted.
2002-11-18 Saikat DebRoy <saikat@stat.wisc.edu>
* reLevel.R (LMEgradient):
Add new method for calculating gradient - uses the
updateFactor slot instead of using the A argument.
* reStruct.R (EMniter<-):
Add new method for doing certain number of EM iterations
in the reStruct object.
(LMEgradient): Add new method for calculating gradient of an reStruct
object.
* pdScalar.R, pdNatural.R, pdMatrixLog.R, pdMat.R, pdLogChol.R, pdDiag.R, pdCompSymm.R:
Replace as(x, foo) where foo is basic types like "numeric" or
"logical" to as.foo(x) - for some reason the as() calls are too
expensive now.
* lme.R (lmeScale): Added from nlme-3.1
(lmeControl): Added from nlme-3.1
(lme): Add preliminary versions - right now just returns the fitted
reStruct object.
* AllClass.R: Add class definition for groupedData objects.
* reStruct.R (coef<-):
Should only set parameter values for random effects
* reStruct.c (nlme_logLikelihood):
Add missing PROTECT() around calculation of Delta.
2002-11-17 Douglas Bates <bates@stat.wisc.edu>
* pdLogChol.R: fix coef<-
2002-11-15 Saikat DebRoy <saikat@stat.wisc.edu>
* reStruct.R (reStruct): Initialize storage for the bbetas slot.
(predecompose): nlme_predecompose now checks the dirty slot - no need
to check it here.
(logLik): No need to call predecompose on reStruct object - done
inside C routine.
* reLevel.R (lmeLevel): Add support for nrow and updateFactor slots in
constructor.
(EMupdate<-): Must return x after modification.
* AllClass.R: Add a new slot updateFactor to lmeLevel objects.
2002-11-14 Saikat DebRoy <saikat@stat.wisc.edu>
* reStruct.R:
do not modify stored when only calculating log-likelihood from R
2002-11-14 Saikat DebRoy <saikat@stat.wisc.edu>
* reStruct.R (coef): remove the unconstrained parameter.
(coef): Use new structure of reStruct objects with columns slot being
inside the lmeLevel objects.
(coef<-): Use new structure of reStruct objects with columns slot being
inside the lmeLevel objects.
* reLevel.R (coef): Added new method for class lmeLevel.
(coef<-): Added new method for class lmeLevel.
2002-11-12 Saikat DebRoy <saikat@stat.wisc.edu>
* reStruct.R (reStruct):
changes for fixing problem with stored and decomposed
indexes.
* reLevel.R (lmelevel):
Add a new method which has precision and groups arguments
missing. This is used for fixed effects and response levels.
2002-11-11 Douglas Bates <bates@stat.wisc.edu>
* pdMat.R:
print method for pdMat is causing codoc to fail - dont know why
* pdLogChol.R: pdLogChol pdgradient and LMEgradient cleanup
* pdDiag.R: pdDiag is failing R CMD check now
2002-11-09 Douglas Bates <bates@stat.wisc.edu>
* pdLogChol.R: Added PACKAGE= to .Call
* pdLogChol.R: More pdLogChol modifications
2002-11-07 Douglas Bates <bates@stat.wisc.edu>
* AllClass.R, pdLogChol.R, pdMat.R: testing pdLogChol
2002-11-07 Douglas Bates <bates@stat.wisc.edu>
* src/pdLogChol.c (pdLogChol_pdgradient): added function.
2002-11-04 Saikat DebRoy <saikat@stat.wisc.edu>
* R/reStruct.R, R/pdNatural.R, R/pdMat.R, R/pdLogChol.R, R/pdIdent.R, R/pdDiag.R, R/pdCompSymm.R:
Add PACKAGE="lme4" to .Call calls
* R/zzz.R:
Remove resetGeneric call - bug fixed in R 1.7.0 development version.
* src/reStruct.c:
Most non-static functions now have an reStruct object as argument and
not individual slots.
* src/qr.c, src/pdNatural.c, src/pdLogChol.c, src/pdIdent.c, src/pdDiag.c:
Fix some compile warnings
* R/AllClass.R: Add the bbetas slot to reStruct.
* R/AllGeneric.R: Add a new predecompose generic.
* R/reStruct.R: Add predecompose and logLik methods.
2002-10-31 Douglas Bates <bates@stat.wisc.edu>
* src/pdNatural.c, tests/pdLogChol.R, tests/pdNatural.R, R/pdNatural.R, src/pdLogChol.c:
Adding pdNatural, tweaking pdLogChol
2002-10-30 Douglas Bates <bates@stat.wisc.edu>
* R/pdDiag.R, R/pdLogChol.R: pdLogChol fixes
* src/Makevars: remove src/Makevars as it is automatically created
* R/pdLogChol.R, R/pdMat.R:
pdLogChol added (without LMEgradient and EMupdate)
2002-10-29 Douglas Bates <bates@stat.wisc.edu>
* src/pdIdent.c, src/methods.h, src/pdDiag.c:
gradient methods added for pdDiag and pdIdent
2002-10-24 Douglas Bates <bates@stat.wisc.edu>
* R/pdMat.R, src/pdDiag.c, src/pdIdent.c, tests/pdIdent.R, R/AllClass.R, R/AllGeneric.R, R/pdDiag.R, R/pdIdent.R:
Adding methods to the pdIdent class
* R/reLevel.R, R/zzz.R, src/pdDiag.c, tests/pdDiag.R, R/AllGeneric.R, R/pdDiag.R, R/pdLogChol.R, R/pdMat.R, R/pdNatural.R, cleanup, configure.ac, ChangeLog, aclocal.m4:
Cleaning up pd classes
2002-10-23 Douglas Bates <bates@stat.wisc.edu>
* configure.ac: Changed the configure.ac and aclocal.m4 files
to the new versions contributed by Kurt Hornik for the Matrix
package.
2002-10-22 Saikat DebRoy <saikat@stat.wisc.edu>
* reStruct.R, reLevel.R, AllClass.R: rename reLevel to lmeLevel
2002-10-22 Saikat DebRoy <saikat@stat.wisc.edu>
* reStruct.c (nlme_estimate_level):
Other than possible bugs, this should be a
working version.
Fix compilation errors. Not all C functions do the correct things
right now - but they do compile.
2002-10-18 Saikat DebRoy <saikat@stat.wisc.edu>
* reStruct.c: More reLevel reorganization.
* reStruct.c:
Move columns, originalRows, decomposedRows and storedRows inside
reLevel class.
2002-10-17 Douglas Bates <bates@stat.wisc.edu>
* qr.c, reStruct.c: Minor compilation bugs
2002-10-15 Saikat DebRoy <saikat@stat.wisc.edu>
* reStruct.c: Add some skeleton code for EM update.
* methods.h: Remove pre-1.6.0 definitions for GET_SLOT and SET_SLOT.
.
* bitfield.c (nlme_word_log2):
Keep the old array based bit index lookup routine in
case we need it later.
* qr.c: change getAttrib(foo, R_DimSymbol) to GET_DIM(foo).
2002-10-15 Douglas Bates <bates@stat.wisc.edu>
* qr.c: Modifications to get past R CMD check
2002-10-15 Douglas Bates <bates@stat.wisc.edu>
* R/pdDiag.R: Spelling corrections for 'Uninitialized'. Other
changes to get a clean load into R.
2002-10-01 Saikat DebRoy <saikat@stat.wisc.edu>
* pdMat.R, pdLogChol.R, pdIdent.R, pdDiag.R, AllGeneric.R, AllClass.R:
Cleaning up of pdMat class codes
2002-09-23 Saikat DebRoy <saikat@stat.wisc.edu>
* AllClass.R:
No need for declaring old classes like data.frame as that is done in
methods now.
2002-09-21 Saikat DebRoy <saikat@stat.wisc.edu>
* src/reStruct.c, src/lapack.h, src/bitfield.c:
changes for compatibility with Doxygen
* Doxyfile: Added for generation of Doxygen documentation
2002-09-20 Douglas Bates <bates@stat.wisc.edu>
* R/AllClass.R: comment style changes
2002-09-16 Saikat DebRoy <saikat@stat.wisc.edu>
* zzz.R:
No need to do a library(methods) or require(methods) from inside
.First.lib as we do that in install.R now.
2002-09-16 Saikat DebRoy <saikat@stat.wisc.edu>
* reStruct.c (nlme_validateIndex): was called nlme_validIndex
(nlme_validateRowIndex): validateIndex should be called nlme_validateIndex
(nlme_validateColIndex): validateIndex should be called nlme_validateIndex
2002-09-13 Saikat DebRoy <saikat@stat.wisc.edu>
* reStruct.c:
Remove _range from name of set and unset bitfield functions.
2002-09-06 Saikat DebRoy <saikat@stat.wisc.edu>
* bitfield.h, bitfield.c:
Rename nlme_bitfield_set_range, nlme_bitfield_unset_range and
nlme_bitfield_toggle_range by dropping _range at end.
* bitfield.c (nlme_bitfield_set): Use memset instead of a for loop
* bitfield.c (nlme_bitfield_unset): Use memset instead of a for loop
2002-09-03 Saikat DebRoy <saikat@stat.wisc.edu>
* reStruct.c: Fixed some bugs.
* reStruct.c:
Added preliminary version of nlme_reStructDims. Currently it only
initializes originalRows slot.
2002-09-03 Saikat DebRoy <saikat@stat.wisc.edu>
* reStruct.c: Fixed some bugs.
* reStruct.c:
Added preliminary version of nlme_reStructDims. Currently it only
initializes originalRows slot.
2002-09-03 Saikat DebRoy <saikat@stat.wisc.edu>
* R/AllClass.R:
Use setOldClass to define data.frame, formula, factor and ordered.
* src/reStruct.c:
nlme_decomposeChunk: Only store first q rows after decomposition when
storemat != NULL.
2002-09-02 Saikat DebRoy <saikat@stat.wisc.edu>
* src/reStruct.c: Value of ncolRest was wrong.
* src/reStruct.c:
Support appending Delta below Z in nlme_decomposeChunk().
* src/qr.c:
Make nlme_qy() add zero rows below qin if its number of rows is not
big enough.
* src/reStruct.c:
Take out code in innermost loop of nlme_predecompose() and create new
function nlme_decomposeChunk(). Modify the code so that it has stored
and Delta in the signature (these are ignored right now).
* src/bitfield.c:
Was referring to range in nlme_bitfield_next_range() as if it was a
structure and not a pointer.
2002-08-29 Saikat DebRoy <saikat@stat.wisc.edu>
* R/reStruct.R: Added missing @random in coef method for reStruct.
* src/bitfield.c: Fix spelling mistake in comment
* src/bitfield.c:
Check for NULL range and x in nlme_bitfield_next_range()
* src/reStruct.c:
Was not checking if destNonZero was non NULL in nlme_copyRows()
* src/reStruct.c, src/qr.h, src/qr.c:
change "const SEXP" to "const SEXPREC*" : const of pointer typedefs are not
pointer to constants
* src/reStruct.c, src/qr.h, src/qr.c, src/bitfield.h, src/methods.h, src/bitfield.c:
Some bugfixes
* src/reStruct.c: use bitfields to keep track of zero rows
* src/bitfield.c, src/bitfield.h: Bitfield handling rotines
2002-08-23 Saikat DebRoy <saikat@stat.wisc.edu>
* src/reStruct.c:
Add nlme_predecompose() and routines needed by it. Some of those
routines may move to a different place later.
The function definitions are still incomplete.
* src/methods.h: Did not have a declaration for nlme_new()
* src/qr.c: Include qr.h in qr.c
* src/qr.h: Create header file QR routines.
* R/AllClass.R: Add reverseOrder slot to reStruct.
* R/reStruct.R:
Fixed some problems in creating row indices in self@dims.
2002-08-21 Saikat DebRoy <saikat@stat.wisc.edu>
* R/reLevel.R: Add reLevel generic.
Remove coef method for reLevel - not required.
* R/AllClass.R: Add definition of reLevel class.
* R/reStruct.R:
Use reLevel objects in the random slot of reStruct objects.
* R/reLevel.R: Checked in first version of reLevel methods.
* src/qr.c: Fixed nlme_new - now evals a call to new.
2002-08-14 Douglas Bates <bates@stat.wisc.edu>
* src/pdMat.c, src/qr.c, R/AllClass.R, src/lapack.h:
Modified slot names in QR class, added nlme_qy to qr.c
* R/pdDiag.R, R/pdLogChol.R: Updates on pdDiag and pdLogChol
2002-08-12 Douglas Bates <bates@stat.wisc.edu>
* R/pdNatural.R, src/pdDiag.c, src/pdMat.c, tests/pdDiag.R, R/AllGeneric.R, R/pdBlocked.R, R/pdCompSymm.R, R/pdDiag.R, R/pdIdent.R, R/pdMat.R:
split R sources, added test methods for LMEgradient and EMupdate
2002-08-01 Saikat DebRoy <saikat@stat.wisc.edu>
* src/qr.c: added PROTECT to creation of qr
* src/qr.c: compute receprocal of the condition number in nlme_QR
* src/methods.h, src/qr.c: make NEW set the class
* src/qr.c: add missing semicolon
* R/AllClass.R, src/qr.c:
rename invcond slot to rcond. compute rcond using dtrcon
* src/qr.c: add an invcond slot to QR
* R/zzz.R:
do library(methods) from .First.lib so that "R INSTALL -s pdMat" works
* INDEX, R/AllGeneric.R:
do not use return types for generics - causes error
* R/pdMat.R, R/reStruct.R, src/methods.h, src/qr.c: Fix problems in QR
2002-07-31 Saikat DebRoy <saikat@stat.wisc.edu>
* R/AllClass.R, R/AllGeneric.R, src/methods.h, src/pdMat.c, src/qr.c:
Added a QR class
2002-07-30 Douglas Bates <bates@stat.wisc.edu>
* R/AllClass.R, R/AllGeneric.R, R/pdMat.R, R/reStruct.R:
Modifications from Saikat
* DESCRIPTION, INDEX, R/AllClass.R, R/AllGeneric.R, R/pdMat.R, R/zzz.R, aclocal.m4, cleanup, configure.ac, data/00Index, data/Machines.rda, data/Oxboys.rda, man/Machines.Rd, man/Oxboys.Rd, man/corrmatrix-class.Rd, man/pdCompSymm-class.Rd, man/pdDiag-class.Rd, man/pdIdent-class.Rd, man/pdLogChol-class.Rd, man/pdMat-class.Rd, man/pdfactor-class.Rd, man/pdmatrix-class.Rd, src/Makevars, src/Makevars.in, src/lapack.h, src/pdMat.c, tests/pdCompSymm.R, tests/pdDiag.R, tests/pdIdent.R:
New file.
* DESCRIPTION, INDEX, R/AllClass.R, R/AllGeneric.R, R/pdMat.R, R/zzz.R, aclocal.m4, cleanup, configure.ac, data/00Index, data/Machines.rda, data/Oxboys.rda, man/Machines.Rd, man/Oxboys.Rd, man/corrmatrix-class.Rd, man/pdCompSymm-class.Rd, man/pdDiag-class.Rd, man/pdIdent-class.Rd, man/pdLogChol-class.Rd, man/pdMat-class.Rd, man/pdfactor-class.Rd, man/pdmatrix-class.Rd, src/Makevars, src/Makevars.in, src/lapack.h, src/pdMat.c, tests/pdCompSymm.R, tests/pdDiag.R, tests/pdIdent.R:
Sources for R libraries
|