Questions tagged [qcc]

a program used to call gcc, providing locations of libraries for appropriate targets, reworking some of the options to be more like Posix, etc.

45 questions
7
votes
3 answers

Convert R dataframe from long to wide format, but with unequal group sizes, for use with qcc

I would like to convert a dataframe from long format to a wide format, but with unequal group sizes. The eventual use will be in 'qcc', which requires a data frame or a matrix with each row consisting of one group, using NA's in groups which have…
jhchou
  • 196
  • 1
  • 12
7
votes
1 answer

How to reproduce the pareto.chart plot from the qcc package using ggplot2?

I have been using the pareto.chart function from the qcc package in R and I really like it. Now I would like to port all my graphics to utilize the ggplot2 package instead. However, my knowledge of ggplot2 is very limited despite the excellent…
Dr. Mike
  • 2,451
  • 4
  • 24
  • 36
5
votes
1 answer

GCC .obj file output is not deterministic (.debug_info, PROGBITS section)

My compile command is C:\work\PROJ-test\QNX_SDK\host\win32\x86/usr/bin/qcc -c -Wc,-frandom-seed="sadfsasafssadsa"…
Bob
  • 4,576
  • 7
  • 39
  • 107
3
votes
2 answers

Control Charts Using ggplot2 facet wrap R

I have the following graph: this was created using the dplyr group_by and summarise functions with ggplot2: slopes %>% head(12) %>% inner_join(word_month_counts, by = "word") %>% mutate(word = reorder(word, -estimate)) %>% …
Shery
  • 1,808
  • 5
  • 27
  • 51
3
votes
1 answer

Cannot find ldl lnsl lpthread lrt when buildling?

I am trying to build the RTI perftest in an i86 QNX architecture. When I try to build the makefile that I generated, I get the following: Checking directory obj/i86QNX6.6qcc_cpp4.7.3/Release Checking directory…
Joe P
  • 33
  • 3
3
votes
1 answer

How to Plot Points in a Vertical Line for Median Control Chart in R

Need to create a chart which looks like this: I'm almost there, just missing the individual points which are plotted vertically. Here the data: q6 <- structure(list(x1 = c(0.0629, 0.063, 0.0628, 0.0634, 0.0619, 0.0613, 0.063, 0.0628, 0.0623,…
CanofDrink
  • 89
  • 9
2
votes
0 answers

Installed Momentics IDE on linux but can't use qcc in terminal

I have installed "Momentics IDE 2.1.2 for linux_64bit" on my lubuntu 20.04 machine and I have also installed the SDK. But when I try to run the command qcc from the momentics folder it always say that qcc not found. I have tried to add the momemtics…
Junnun Karim
  • 23
  • 1
  • 5
2
votes
1 answer

How to display dates in a QCC Xbar chart

I have qcc chart that is working, but I would like to show the true dates for the values in the control chart instead of showing the value index number I came across the post below, but I have been unable to apply it to my code. Adding line to plot…
henry
  • 31
  • 3
2
votes
1 answer

Cannot build libboost_filesystem.a for boost_1.68.0 with qnx7.0based qcc

Used the following options ./bootstrap.sh--with-toolset=qcc b2 toolset=qcc target-os=qnxnto threadapi=pthread link=static -l240 --layout=system --without-python cxxflags="-Vgcc_ntoarmv7le -Y_gpp -Wc,-std=gnu++0x -D_LITTLE_ENDIAN"…
a k
  • 531
  • 5
  • 15
2
votes
0 answers

qcc - CMake and compiler warnings

I have been using cmake for a QNX 6.5 build which uses a qcc compiler. When I run make to build the project it does not show any errors (original project without the cmake did). This form was almost what I needed, but not quite. I tried to add the…
Richard F
  • 21
  • 1
2
votes
3 answers

Remove Control Limits With qcc Package in R (Quality Control Charts)

I need to remove the lower control limit and center line (and their labels) from my control chart. Here's the code: # install.packages('qcc') library(qcc) nonconforming <- c(3, 4, 6, 5, 2, 8, 9, 4, 2, 6, 4, 8, 0, 7, 20, 6, 1, 5, 7) samplesize <-…
CanofDrink
  • 89
  • 9
2
votes
1 answer

Implementing additional standard run rules with R and qcc

I am a newbie with R, and would like to understand what it can do for control charting. I have read articles on qcc and created sample charts in R studio based on my own datasets to generate graphics or simply the underlying data. It appears that…
John
  • 23
  • 3
2
votes
3 answers

Momentics install missing qcc

I'm setting up a development environment for BB10 (on a Linux host), and have downloaded and installed the latest Momentics 10.2 (beta). While I can run the qde (dev environment), when I try to compile a sample project I see an error that 'program…
TSG
  • 4,242
  • 9
  • 61
  • 121
1
vote
0 answers

How to compile project with qcc

I'm on Ubuntu 20.4.6, I try to compile OpenCV using the qcc QNX compiler. In OpenCV build from source instructions they use the following command to generate their build files: cmake -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr/local…
Gal Hadar
  • 11
  • 1
  • 4
1
vote
0 answers

QCC r package chart format

I was wondering if there is a way to format the chart I have. I would like to make the CL, UCL, LCL, all dashed and red if possible. And I would also like to add titles on the axes along with a title on the graph. Lastly is there a way to remove the…
1
2 3