similar to: Howto Disable Direct draw wine 0.9

Displaying 20 results from an estimated 8000 matches similar to: "Howto Disable Direct draw wine 0.9"

2005 Nov 01
0
Colour palette goes nuts.
Not sure how to describe this or where to point the finger, so I thought I post here before submitting a bug. Wine: 0.9 Application: Titanic Explorer This application is a 'educational' triple CD about Titanic. It is created with macromedia 'director 6' and utilizes QuickTime. It installs fine. Runs fine (needed to disable ddraw on QuickTime) until I try a 'search'.
2005 Sep 29
1
Quicktime 2 Theora Transcoder's Nano-Howto
After a bunch of cumbersome testing I was able to transcode a Quicktime MOV file to OGG with theora and Vorbis. The method's a bit fumbly, but it works... It is automatable except for the initial audio decoding. Software used: Xine, oggenc, ffmpeg, ffmpeg2theora, oggzmerge Step 1: Get the video out of Quicktime ffmpeg -i infile.mov -b 5000 -f mpeg2video outfile.mpg Step 2: Get the video
2007 Sep 19
4
fontsize in mosaic plot lables
Hi List, I am trying unsucessfully to modify the fontsize of lables in mosaic: require(vcd) mosaic(Titanic, pop=FALSE, labeling_args=list(rot_labels=c(bottom=90,top=90), set_varnames = c(Sex = "Gender"), gp_text=gpar(fontsize=20))) #can't get it to resize text tab <- ifelse(Titanic < 6, NA, Titanic) # it works for labeling_cells labeling_cells(text = tab,
2017 Sep 28
1
Boxplot, formula interface, and labels.
Just change the separator: data(Titanic) Titanic.df <- as.data.frame(Titanic) boxplot(Freq~Class*Sex, Titanic.df, cex.axis=.6, sep="\n") See attached .png. ---------------------------------------- David L Carlson Department of Anthropology Texas A&M University College Station, TX 77843-4352 -----Original Message----- From: R-help [mailto:r-help-bounces at r-project.org] On
2004 Jun 22
1
Grouped AND stacked bar charts possible in R?
Good day all, My statisticians want an R procedure that will produce grouped stacked barplots. Barplot will stack or group, but not both. The ftable function can produce a table of the exact form they want, but the barplot doesn't show all the divisions we want. For an example, here's the sample from the help file for "ftable:" data(Titanic) ftable(Titanic, row.vars = 1:3)
2020 Jan 02
3
titanic
Estimados quisiera poder salvar a csv y a excell la base de datos titanic data("titanic", package = "prLogistic") saludos José
2009 Feb 08
2
Using panel.grid in barchart
Hi all, I'm trying to do an example in Deepayan Sarkar's Lattice book. It involves making a barchart based on the Titanic dataset. I can get the barchart to plot fine; however, when I try to edit panel.grid, I get an error: > titan<-barchart(Class ~ Freq | Age + Sex, data = as.data.frame(Titanic), groups=Survived, stack=TRUE, layout=c(4,1),
2011 Nov 05
1
set seed for random draws
Hello, all! I need help on these two problems: 1) If I want to randomly draw numbers from standard normal (or other distributions) in loops e.g.: ty=0; ks=0 for (i in 1:5) { set.seed(14537+i) k<-rnorm(1) ks[i]<-.3*k+.9 if (ty==0) { while ((ks<.2)||(ks>3)) { #set.seed(13237+i*100) k<-rnorm(1)
2007 Jul 10
1
Lattice: vertical barchart
barchart(Titanic, stack=F) produces a very nice horizontal barchart. Each panel has four groups of two bars. barchart(Titanic, stack=F, horizontal=F) doesn't produce the results I would have expected, as it produces this warning message: Warning message: y should be numeric in: bwplot.formula(x = as.formula(form), data = list(Class = c(1, And it results in each panel having 22 groups of
2010 Jul 07
4
Gray level mosaic plot with shading_Friendly
Suppose we start with data("Titanic") mosaic(Titanic, shade = TRUE) How do I combine the dashed box contours of shading_Friendly to indicate negative residuals, with three levels of gray: dark for abs(Pearson Resid) > 4, lighter for 4 > abs(Pearson Resid) > 2, and lightest for bs(Pearson Resid) < 2 ? Thanks, Michael ______________________________________________
2008 Jul 02
1
exporting ftable
How can I export an ftable object in the same format that appears in R command window? For testing that i was using this example that is in help of this function. ## Start with a contingency table. ftable(Titanic, row.vars = 1:3) ftable(Titanic, row.vars = 1:2, col.vars = "Survived") ftable(Titanic, row.vars = 2:1, col.vars = "Survived") ## Start with a data frame. x <-
2012 Aug 24
1
help with a special variant of balloonplot
Hi, I am interested in implementing a special variant of balloonplot.  Let me explain with an example dataset from the reference manual : library(gplots) data(Titanic) dframe<-as.data.frame(Titanic) survived<-dframe[dframe$Survived=="Yes",] attach(survived) balloonplot(x=Class,y=list(Age,Sex),z=Freq,sort=TRUE,show.zeros=TRUE,cum.margins=FALSE,             main="BalloonPlot :
2010 Feb 23
1
XiphQT with Thusnelda for QuickTime X
Any progress in this issue? Or is the whole XiphQT project dead? Any 64bit package of XiphQT for MacOSX Snow Leopard on its way? Any solution on its way, which works with Quicktime X on Snow Leopard and which doesn't urge/force you to install and use the old Quicktime 7 player? Any solution on its way, solving the /Library/Components problem on MacOSX Snow Leopard/Quicktime X? See: [theora]
2001 Jul 25
2
QuickTime for Linux and vorbisfile
I recently began working on an application which will combine Ogg Vorbis with QuickTime on the Linux platform. I am using Ogg Vorbis 1.0rc1 and Adam Williams' QuickTime for Linux 1.3 library (http://www.heroinewarrior.com/quicktime.php3). I am having a strange problem. As soon as I #include <quicktime/quicktime.h>, the code causes a segmentation fault when run. When I look at it with
2008 Jul 04
1
Hmisc latex: table column width
R users, I'm trying to set a column width to one of the columns in a latex table (using Hsmic package, latex function). My intention is to get \begin{tabular}{lp{1.2in}llllll}\hline\hline Here's an example ####### R code ######### DF <- data.frame(Titanic) DF$long <- paste("This is a veeeeeeeeeeryyyyyyyyyy long line") DF <- DF[, names(DF)[c(6,1:5)]] library(Hmisc)
2007 Apr 27
1
Quadratcount() plotting in R spatstat
Hello, I am trying to plot a quadratcount object over a ppp object in the spatstat package. I ultimately want to get something like this http://bg9.imslab.co.jp/Rhelp/R-2.4.0/src/library/spatstat/man/images/big_quadratcount_001.png http://bg9.imslab.co.jp/Rhelp/R-2.4.0/src/library/spatstat/man/images/big_quadratcount_001.png See
2016 May 03
1
C6 Firefox 45.1 segmentation faults
On Tue, May 3, 2016 at 9:34 AM, <m.roth at 5-cent.us> wrote: > Akemi Yagi wrote: >> To add to your fun, let me present my wish list: >> >> mplayer-gui and libquicktime (latest version from PUIAS) and >> mlt >= 0.9.4 >> > Ummm, NO. NOT the latter, under any circumstance... or hadn't you missed > the huge announcements that Apple would no longer
2008 Aug 25
2
patch for native iphone support
Here is a patch for icecast 2.3.2 that adds support for listening to mp3 and aac+ streams on the iphone. A quick background on the technical aspects of the patch and why it is needed : With the advent of 3g on the iphone, lots of people have been jumping on the bandwagon of providing internet radio streams that work on the iPhone. The biggest problem is that (without having to install an
2005 Jun 06
2
Ogg Vorbis QuickTime Component
Hi all, I don't know if this is the place to ask about this, but I'm going to try anyway. There is an ogg-vorbis plugin for iTunes on Mac OS X that is downloadable from http://www.macupdate.com/info.php/id/14259 or http://www.versiontracker.com/dyn/moreinfo/mac/13012&mode=feedback Unfortunately, this plug-in (a Quicktime component) crashes iTunes for the latest version of
2005 Feb 24
5
New to icecast2, few questions
On Thu, 24 Feb 2005, Karl Heyes wrote: > On Thu, 2005-02-24 at 18:11, Kevin S. Brackett wrote: >> I have a icecast2, everything is working great, except for 2 issues.. >> >> 1, Quicktime is always buffering... never plays, anyone seen this and if >> so know of a solution? > > not sure, make sure that quicktime handles the stream format you're > sending it.