Re: [racket] plot w/non-standard ticks

2014-07-10 Thread Robby Findler
Thanks!! Robby On Thu, Jul 10, 2014 at 7:27 PM, Neil Toronto wrote: > You're very close. Try > > (parameterize ([plot-x-ticks no-ticks]) > (plot ...)) > > Neil ⊥ > > > On 07/09/2014 12:04 AM, Robby Findler wrote: >> >> Anyone know how to make a plot using 'lines' with ticks that are o

Re: [racket] plot w/non-standard ticks

2014-07-10 Thread Neil Toronto
You're very close. Try (parameterize ([plot-x-ticks no-ticks]) (plot ...)) Neil ⊥ On 07/09/2014 12:04 AM, Robby Findler wrote: Anyone know how to make a plot using 'lines' with ticks that are of my own divising instead of the existing? The closest I've been able to come is the below