A named list of the formal arguments for scale_x_continuous
. This
function helps you to create a fully populated list. For any
function that uses this as a default, you can also
create your own named list for arguments you want to update, using
this default as a base.
defx(..., trans = deprecated())
arguments for scale_x_continuous
deprecated; use transform
argument instead.
In the named list, the name is the argument name and the value is the argument value.
defx(transform="log")
#> $name
#> waiver()
#>
#> $breaks
#> waiver()
#>
#> $minor_breaks
#> waiver()
#>
#> $n.breaks
#> NULL
#>
#> $labels
#> waiver()
#>
#> $limits
#> NULL
#>
#> $expand
#> waiver()
#>
#> $na.value
#> [1] NA
#>
#> $transform
#> [1] "log"
#>
#> $guide
#> waiver()
#>
#> $position
#> [1] "bottom"
#>
#> $sec.axis
#> waiver()
#>