This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ########## | |
| # Tweaked Win10 Initial Setup Script | |
| # Primary Author: Disassembler <disassembler@dasm.cz> | |
| # Modified by: alirobe <alirobe@alirobe.com> based on my personal preferences. | |
| # Version: 2.12.1, 2018-03-15 | |
| # Primary Author Source: https://github.com/Disassembler0/Win10-Initial-Setup-Script | |
| # Tweaked Source: https://gist.github.com/alirobe/7f3b34ad89a159e6daa1/ | |
| # Tweak difference: | |
| # | |
| # @alirobe's version is a subset focused on safely disabling telemetry, some 'smart' features and 3rd party bloat ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #' Creates a \code{data.frame} version of the str function for data.frames. | |
| #' | |
| #' Note that this function only works with \code{data.frames}. The function | |
| #' will throw an error for any other object types. | |
| #' | |
| #' @param n the first n element to show | |
| #' @param width maximum width in characters for the examples to show | |
| #' @param n.levels the first n levels of a factor to show. | |
| #' @param width.levels maximum width in characters for the number of levels to show. | |
| #' @param factor.values function defining how factor examples should be printed. |