similar to: help on the R package Softmaxreg

Displaying 20 results from an estimated 1000 matches similar to: "help on the R package Softmaxreg"

2018 May 28
1
help on the R package Softmaxreg
... who can be found by R's ?maintainer function. A web search on "R softmaxreg package" also seemed to bring up relevant info. -- Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Mon, May 28, 2018 at 2:30 AM, Rolf
2018 May 28
0
help on the R package Softmaxreg
On 28/05/18 18:13, Vy Ong wrote: > Hello, > Are there anyone knowing about the Softmaxreg R package? I suspect that the maintainer of softmaxreg (please note the *lower case* "s") "knows about" this package! <SNIP> cheers, Rolf Turner -- Technical Editor ANZJS Department of Statistics University of Auckland Phone: +64-9-373-7599 ext. 88276
2019 Jun 27
2
[PATCH v2] drm/bochs: fix framebuffer setup.
The driver doesn't consider framebuffer pitch and offset, leading to a wrong display in case offset != 0 or pitch != width * bpp. Fix it. Signed-off-by: Gerd Hoffmann <kraxel at redhat.com> --- drivers/gpu/drm/bochs/bochs.h | 2 +- drivers/gpu/drm/bochs/bochs_hw.c | 14 ++++++++++---- drivers/gpu/drm/bochs/bochs_kms.c | 3 ++- 3 files changed, 13 insertions(+), 6 deletions(-)
2019 Jun 26
1
[PATCH 2/2] drm/bochs: fix framebuffer setup.
If bo->width doesn't match fb->width the driver fails to configure the display correctly, resulting in a scrambled display. Fix it. Signed-off-by: Gerd Hoffmann <kraxel at redhat.com> --- drivers/gpu/drm/bochs/bochs.h | 2 +- drivers/gpu/drm/bochs/bochs_hw.c | 13 +++++++++---- drivers/gpu/drm/bochs/bochs_kms.c | 1 + 3 files changed, 11 insertions(+), 5 deletions(-)
2018 Jan 01
3
Discrete valued time series data sets.
I am looking for (publicly available) examples of discrete valued time series data sets. I have googled around a bit and have found lots of articles and books on discrete valued time series, but have had no success in locating sites at which data are available. Can anyone make any useful suggestions? Thanks. cheers, Rolf Turner -- Technical Editor ANZJS Department of Statistics
2017 Nov 18
4
tcltk problems
It recently came to my attention that my R installation no longer has tcltk capability. I can't figure out why or what to do about it. I built R from source. I configured using the "--with-tcltk" flag. The build and install *seemed* to go OK, but after realising I didn't have tcltk capability I looked into config.log. There I found: > configure:39486: checking for
2008 Feb 15
2
Softmax in nnet
Hi R help, I run my data in nnet with skip layer, factor response (with 0 & 1 values) and explicitly put softmax=T to compare the result of the default nnet with no softmax specification. I assume this should give me the same result. I got the result the default one, but not the softmax version and I got the error message that I did not quite understand. test6.nn.skipT.softm.Yfac <-
2017 Nov 18
0
tcltk problems
When I have compiled from sourced on Ubuntu, I did NOT include the "with-tcltk" and it worked fine. Did you try that, please? Thanks, Erin On Fri, Nov 17, 2017 at 6:34 PM, Rolf Turner <r.turner at auckland.ac.nz> wrote: > > It recently came to my attention that my R installation no longer has > tcltk capability. > > I can't figure out why or what to do about
2016 Apr 09
1
[FORGED] Generating random data with non-linear correlation between two variables
On 09/04/16 06:57, Muhammad Bilal wrote: > Hi All, > > I am new to R and don't know how to achieve it. > > I am interested in generating a hypothetical dataframe that is consisted of say two variables named v1 and v2, based on the following constraints: > 1. The range of v1 is 500-1500. > 2. The mean of v1 is say 1100 > 3. The range of v2 is 300-950. > 4. The mean of
2016 Oct 04
5
Problem installing rgdal on a laptop running Ubuntu 16.04.1
I previously sent a cri de coeur about this problem to the r-help list but so far have not managed to extract a solution. So I am trying here. (Uh, Ubuntu *is* a "special instance" of Debian, isn't it?) The problem is that I cannot install rgdal, and I need it. Rather desperately. I do: install.packages("rgdal",lib="/home/rolf/Rlib") and get the error
2011 Oct 05
4
SPlus to R
I'm trying to convert an S-Plus program to R.  Since I'm a SAS programmer I'm not facile is either S-Plus or R, so I need some help.  All I did was convert the underscores in S-Plus to the assignment operator <-.  Here are the first few lines of the S-Plus file:   sshc _ function(rc, nc, d, method, alpha=0.05, power=0.8,              tol=0.01, tol1=.0001, tol2=.005, cc=c(.1,2),
2017 Nov 18
3
tcltk problems
On 18/11/17 17:00, Erin Hodgess wrote: > When I have compiled from sourced on Ubuntu, I did NOT include the > "with-tcltk" and it worked fine.? Did you try that, please? In the past I have configured without using the "--with-tcltk" flag, and R of course built just fine. But it *did not* have tcltk capability. When I wanted that capability I had to start using the
2018 Jan 02
0
Discrete valued time series data sets.
Hi Rolf, I looked at https://docs.microsoft.com/en-us/azure/sql-database/sql-database-public-data-sets One of the first sets in the list is the airline time series (I think it is also used in dplyr examples). https://www.transtats.bts.gov/OT_Delay/OT_DelayCause1.asp You might find other possibilities in that list. HTH, Eric On Tue, Jan 2, 2018 at 12:44 AM, Rolf Turner <r.turner at
2017 Aug 23
4
Flummoxed by gsub().
I have a vector (say "x") of the form [1] "mung5" "mung10" "mung20" "gorp5" "gorp10" "gorp20" I want to extract just the numbers (strings of digits) that appear at the end of the strings in "x". My reading of ?regex led me to believe that gsub("[:alpha:]","",x) should give the
2017 Aug 23
4
Flummoxed by gsub().
On 23/08/17 18:33, Stefan Evert wrote: > >> On 23 Aug 2017, at 07:45, Rolf Turner <r.turner at auckland.ac.nz> wrote: >> >> My reading of ?regex led me to believe that >> >> gsub("[:alpha:]","",x) >> >> should give the result that I want. > > That's looking for any of the characters a, l, p, h, : . OK. I see
2020 Feb 11
1
[PATCH v3] drm/bochs: add drm_driver.release callback.
Call bochs_unload via drm_driver.release to make sure we release stuff when it is safe to do so. Use drm_dev_{enter,exit,unplug} to avoid touching hardware after device removal. Tidy up here and there. Signed-off-by: Gerd Hoffmann <kraxel at redhat.com> --- drivers/gpu/drm/bochs/bochs_drv.c | 6 +++--- drivers/gpu/drm/bochs/bochs_hw.c | 24 +++++++++++++++++++++++- 2 files changed, 26
2012 Jan 04
0
Error formal argument "softmax" matched by multiple actual arguments
I am running the nnet package as > neural.soft<-nnet(custcat~region+ed+marital+tenure+age+address+income,size=3,softmax=TRUE) This returns the error message : formal argument "softmax" matched by multiple actual arguments Here the dependent variable "custcat" is a factor with 4-levels. This error does not crop up for any other arguments of nnet(), including
2007 Oct 16
1
simulation
I am trying to write a function that will simulate observed counts X and Y as below, I want the function to be able give many replicates, can somebody advise? thanks Oarabile #alpha,n sdx and sdy are constant, and N is a vector of length n. unstructured<-function(n,N,alpha,sdx,sdy){ Vx<-rnorm(n,mean=0,sd=sdx) Vy<-rnorm(n,mean=0,sd=sdy) thetax<-exp(alpha+Vx) thetay<-exp(alpha+Vy)
2016 Mar 05
2
Problem installing R-devel data 4 March 2016.
I am trying to install the latest development version of R so as to be able to perform a package check according the rules specified for CRAN. I performed the following steps: (1) Downloaded R-devel.tar.gz, dated 04-Mar-2016 03:21, from CRAN (2) Upacked. (3) Created directory "BldDir" next to the directory "R-devel". (4) Changed directories to BldDir. (5) Executed
2017 Mar 28
2
A trap for young players with the lapply() function.
On 28/03/17 15:26, Charles C. Berry wrote: > On Mon, 27 Mar 2017, Rolf Turner wrote: > >> >> From time to time I get myself into a state of bewilderment when using >> apply() by calling it with FUN equal to a function which has an >> "optional" argument named "X". >> >> E.g. >> >> xxx <-