similar to: RQDA 0.2-2 has been released

Displaying 20 results from an estimated 1000 matches similar to: "RQDA 0.2-2 has been released"

2008 Nov 24
1
RQDA-0.1.5 is released
RDQA is a package for Qualitative Data Analysis built upon R. It works both on the Windows and Linux/FreeBSD platforms. RQDA is an easy-to-use tool to assist in the analysis of textual data. At the present, it supports only plain text format data. All the information is stored in SQLite database via the R package of RSQLite. The GUI is based on RGtk2, via the aid of gWidgetsRGtk2. It includes a
2008 Nov 24
1
RQDA-0.1.5 is released
RDQA is a package for Qualitative Data Analysis built upon R. It works both on the Windows and Linux/FreeBSD platforms. RQDA is an easy-to-use tool to assist in the analysis of textual data. At the present, it supports only plain text format data. All the information is stored in SQLite database via the R package of RSQLite. The GUI is based on RGtk2, via the aid of gWidgetsRGtk2. It includes a
2010 Mar 01
0
RQDA 0.1-9 is on CRAN now
Dear all, RQDA is a R package for computer-aided qualitative data analysis (CAQDA). It is an easy-to-use tool to assist in the analysis of textual data. RQDA 0.1-9 is a major upgrade with the following changes: * widgets are enabled only if they are usable. * Better code categories management system and various improvements of GUI. * Click-handler for second half of code-mark. * Better default
2010 Mar 01
0
RQDA 0.1-9 is on CRAN now
Dear all, RQDA is a R package for computer-aided qualitative data analysis (CAQDA). It is an easy-to-use tool to assist in the analysis of textual data. RQDA 0.1-9 is a major upgrade with the following changes: * widgets are enabled only if they are usable. * Better code categories management system and various improvements of GUI. * Click-handler for second half of code-mark. * Better default
2011 Sep 29
1
Warning: changing locked binding for ...
Dear all, I use the R R Under development (unstable) (2011-09-28 r57099). When I load the RQDA package, it issues warnings. As the RQDA package developer, what should I deal with such message? Thank you very much. > library(gWidgetsRGtk2) Loading required package: gWidgets > library(RQDA) Loading required package: DBI Loading required package: RSQLite Use 'RQDA()' to start the
2009 Jan 02
0
RQDA-0.1-6 is on CRAN
Major new features of RQDA-0.1-6: GUI: * GUI for file-organization (e.g searching, categorization etc.). * GUI for settings (e.g. colors for ) Functions: * Import a batch of files * Calculate the relation between two codings, given the coding index * Gives a summary of coding and inter-code relationship -- HUANG Ronggui, Wincent Tel: (00852) 3442 3832 PhD Candidate, City University of Hong Kong
2009 Jan 02
0
RQDA-0.1-6 is on CRAN
Major new features of RQDA-0.1-6: GUI: * GUI for file-organization (e.g searching, categorization etc.). * GUI for settings (e.g. colors for ) Functions: * Import a batch of files * Calculate the relation between two codings, given the coding index * Gives a summary of coding and inter-code relationship -- HUANG Ronggui, Wincent Tel: (00852) 3442 3832 PhD Candidate, City University of Hong Kong
2018 Apr 15
1
RQDA/RGtk2 Installation Problem
Greetings, I have been having a problem installing RQDA on my Mac (OS 10.13.2). I followed the installation process on the RQDA page ( http://rqda.r-forge.r-project.org/), but I keep getting an error message saying that I am missing pkg-config and GTK. I reinstalled XQuartz and GTK+ 2.24.17 multiple times (and reinstalled R version 3.4.4), but kept receiving the same error message. I also tried
2010 Nov 02
2
can not built a package
Dear all, I tried to build a package from source, and ran into a problem. >R CMD build RQDA * checking for file 'RQDA/DESCRIPTION' ... OK * preparing 'RQDA': * checking DESCRIPTION meta-information ... OK ERROR copying to build directory failed I searched and found this http://r.789695.n4.nabble.com/tar-problem-when-using-R-CMD-build-on-Windows-td2734636.html > SET
2008 Dec 11
1
Sorting problem
Sys.setlocale(,"C") x1 <- as.character(date()) # I use date to record the time, and save it to sqlite database, to it converted to character x1_2 <- strptime(x1, "%a %b %d %H:%M:%S %Y") x2 <- as.character(date()) x2_2 <- strptime(x2, "%a %b %d %H:%M:%S %Y") X<-c(x1_2,x2_2) order(X) ## I want to get the permutation other than the sorted vector. ##
2008 Dec 12
1
How to mimic select.list using RGtk2/gWidgetsRGtk2?
I want to write a function mimic the function of select.list(), here is my preliminary version. select <- function(x,multiple=TRUE,...){ ans<-new.env() g <- gwindow(title=title,wid=200,heigh=500) x1<-ggroup(FALSE,con=g) x2<-gtable(x,multiple=multiple,con=x1,expand=TRUE) gbutton("OK",con=x1,handler=function(h,...){ value <- svalue(x2) if (length(value)==0)
2011 Apr 04
0
[R-sig-ME] Documentation for the glm module in jags/rjags?
It turns out that when I use GUI (file-change dir) to set the working directory, R will crash. If I use setwd() instead, the example runs well. Regards, On 4 April 2011 00:17, Wincent <ronggui.huang@gmail.com> wrote: > OK, I dig into the problem and found that Chinese character in the path > should be blamed. > Once the path rename to English only, it works. > > Regards,
2012 Apr 24
1
nobs.glm
Hi all, The nobs method of (MASS:::polr class) takes into account of weight, but nobs method of glm does not. I wonder what is the rationale of such design behind nobs.glm. Thanks in advance. Best Regards. > library(MASS) > house.plr <- polr(Sat ~ Infl + Type + Cont, weights = Freq, data = housing) > house.logit <- glm(I(Sat=='High') ~ Infl + Type + Cont, binomial,weights
2012 May 31
1
possible bug in "R Editor"
Dear all, I clicked "File-New Script" to open a R Editor, typed some commands in it and then saved it to a file. If the location where I tried to save the script contained Chinese Character, R Editor complained, Error: invalid input 'E:\Some.Chinese.Characters\new_file.R' in 'utf8towcs' > sessionInfo() R version 2.15.0 (2012-03-30) Platform: i386-pc-mingw32/i386
2012 May 09
2
file path
Dear all, is there any function to assert whether a file path is legitimate, and to convert any potential file path to a legitimate file path? I automate a batch of files and write them to plain text files with cat(). The file argument of cat() is generated automatically which may contain characters such as ? < >, unacceptable in Windows OS. What I do at this moment is to strip such
2012 Oct 29
2
GTK_2.18.5-X11.pkg
Does anyone know where I can download the GTK_2.18.5-X11.pkg? It has been removed from r.research.att.com/libs/ and I need it to use the RQDA package on my mac. Is there anyone who can direct me to someone who might have the file? Any help would be greatly appreciated. - Cory
2012 Apr 13
2
Long command in Sweave
Dear useRs, I am writing a vignette for a package, which contains long command like this, >reduce(Lipset_cs,"SURVIVAL",c("GNPCAP", "URBANIZA", "LITERACY", "INDLAB", "GOVSTAB"),explain="positive",remainder="exclude",case="CASEID") It is longer than the width a page and part of it will become
2020 Apr 02
2
Can I use guestfish to benchmark qemu performance?
I come across this page libguestfs.org/guestfs-performance.1.html <http://libguestfs.org/guestfs-performance.1.html> This raises my interest. I am currently learning how to benchmark performance qemu. So here is my questions: 1. Can I use guestfish or any tools provided by libguestfs to benchmark qemu? How? (The command I use below is correct or what's the correct command to execute
2012 Mar 13
2
Problem installing gWidgetsRGtk2 on Ubuntu 10.04
dear all, I'm totally new to R and want to install the RQDA package. It fails because of a dependency with gWidgetsRGtk2, which doesn't install because of the following: > * installing *source* package ?gWidgetsRGtk2? ... ** R ** inst ** preparing package for lazy loading Error in eval(expr, envir, enclos) : konnte Funktion "setRefClass" nicht finden (=could not find
2011 Aug 31
2
dbWriteTable error message
I am at loss of what is going on here ... I am trying to write to a SQLite database: con <- dbConnect(dbDriver("SQLite"), dbname="pres-docs.rqda") I have a data frame that is 889 rows by 7 columns. The column number and types agree with the database table columns and column type. dbWriteTable(con, "fileAttr", DF.4, row.names=FALSE, overwrite=TRUE) Then I get