| spdata.raw.df {QRMlib} | R Documentation |
The spdata.raw.df data frame has 20 rows and 11 columns.
It contains default data for A, BBB, BB, B and C-rated companies for the years 1981 to 2000
data(spdata.raw.df)
This data frame contains the following 11 columns:
| year | year of default |
| Aobligors | number of A-rated companies |
| Adefaults | number of A-rated companies defaulting in year |
| BBBobligors | number of BBB-rated companies |
| BBBdefaults | number of BBB-rated companies that default in year |
| BBobligors | number of BB-rated companies |
| BBdefaults | number of BB-rated companies that default in year |
| Bobligors | number of B-rated companies |
| Bdefaults | number of B-rated companies that default in year |
| CCCobligors | number of CCC-rated companies |
| CCCdefaults | number of CCC-rated companies that default in year |
There are 20 rows with values for the years from 1981 to 2000
Standard & Poors Credit Monitor
data(spdata.raw.df); attach(spdata.raw.df); BdefaultRate <- Bdefaults/Bobligors; BBdefaultRate <- BBdefaults/BBobligors; BBBdefaultRate <- BBBdefaults/BBBobligors; AdefaultRate <- Adefaults/Aobligors; CCCdefaultRate <- CCCdefaults/CCCobligors;