Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
In fact, I want to be able to explore details of awakenings. This is particularly relevant for learning about patterns of sleep disturbances. Figure 2-10 shows the output from the following command: Powershell> get-things sleep | select-object -expandproperty Awakenings | format-table Figure 2-10. Understanding the pattern of Awakenings Now you can enable some data crunching by exporting this data to a CSV file and switching the data analysis to Microsoft Excel or Google Spreadsheets: Powershell> get-things sleep | select-object When, SleepMinutes, SettlingMinutes | export-csv SleepData.csv This creates the file SleepData.csv with the selected data.